シリンダーにテキストを印刷したい。結果は、コカ・コーラの缶のように見えるはずです。
Mathematicaのドキュメントの例と同様に試してみました: http://reference.wolfram.com/mathematica/ref/Texture.html > Scope > Texture Specification > Text Example
text = Style["Coca Cola", 128];
Graphics3D[{
Texture[text],
Red, Cylinder[{{0, 0, 0}, {0, 0, h}}, radius[h], VertexTextureCoordinates -> {...}],
}]
しかし、Cylinder は VertexTextureCoordinates オプションを認識しません。私は何を間違っていますか?