2
我想在圓柱體上打印文本。結果應該看起來像一罐可口可樂。Mathematica:在3D圖形上打印文本
我嘗試了類似於例子Mathematica的文檔中: http://reference.wolfram.com/mathematica/ref/Texture.html>範圍>紋理規格>文本例
text = Style["Coca Cola", 128];
Graphics3D[{
Texture[text],
Red, Cylinder[{{0, 0, 0}, {0, 0, h}}, radius[h], VertexTextureCoordinates -> {...}],
}]
但氣缸不識別VertexTextureCoordinates選項。 我在做什麼錯?
謝謝。但我的教授希望我使用內置的基元。然而,這個文本的想法只是一個想法,以獲得額外的積分。 – Reini