Keywords: mathematica 3d cg parametricplot3d texture torus 輪環 りんかん ドーナツ どーなつ 五芒星 ごぼうせい 五光星 ごこうせい 五稜星 ごりょうせい program プログラム code コード algorithm コード アルゴリズム pentagram geometric sculpture geometricsculpture shape geometry sculpture mapping テクスチャ マッピング 模様 もよう abstract 抽象 ちゅうしょう アブストラクト design pattern デザイン パターン graphic グラフィック グラフィクス structure 意匠 構造 symmetry 対称性 たいしょうせい シンメトリー 対称 たいしょう algorithm organic pattern black background serene bright pastel photo border SetOptions[ParametricPlot3D, PlotRange -> Full, Mesh -> None, Boxed -> False, Axes -> None, PlotPoints -> 400, ImageSize -> 3000, Background -> Darker[Green, 0.8], PlotStyle -> Directive[Specularity[White, 30], Texture[Import["D:/tmp/861.jpg"]]], TextureCoordinateFunction -> ({#4 + #5, #5/Pi} &), Lighting -> "Neutral"]; a = 5; (* center hole size of a torus *) b = 6; (* hexa-torus *) d = 3; (* number of torus *) v = 2.5; x = (a - Cos[t] - Sin[b s]) Cos[v (s + Pi/(2 b))]; y = Sin[t] Sin[b s]; z = (a - Cos[t] - Sin[b s]) Sin[v (s + Pi/(2 b))]; rot = Table[{x, y, z}.RotationMatrix[2 i Pi/d, {1, 0, 0}], {i, d}]; ParametricPlot3D[rot, {t, 0, 2 Pi}, {s, 0, 2 Pi}] (*--- The Texture *) SetOptions[ParametricPlot3D, PlotRange -> Full, Mesh -> None, Boxed -> False, Axes -> None, PlotPoints -> 400, ImageSize -> 3000, Background -> Darker[Green, 0.8], PlotStyle -> Directive[Specularity[White, 30], Texture[Import["D:/tmp/861.jpg"]]], TextureCoordinateFunction -> ({#4 + #5, #5/Pi} &), Lighting -> "Neutral"]; a = 5; (* center hole size of a torus *) b = 6; (* hexa-torus *) d = 3; (* number of torus *) v = 2.5; x = (a - Cos[t] - Sin[b s]) Cos[v (s + Pi/(2 b))]; y = Sin[t] Sin[b s]; z = (a - Cos[t] - Sin[b s]) Sin[v (s + Pi/(2 b))]; rot = Table[{x, y, z}.RotationMatrix[2 i Pi/d, {1, 0, 0}], {i, d}]; ParametricPlot3D[rot, {t, 0, 2 Pi}, {s, 0, 2 Pi}] (*--- The Texture *) |