Keywords: mathematica 3d cg regionplot3d texture program プログラム code コード algorithm コード アルゴリズム geometric sculpture geometricsculpture shape geometry sculpture mapping テクスチャ マッピング 模様 もよう design pattern デザイン パターン graphic グラフィック グラフィクス structure 意匠 構造 symmetry 対称性 たいしょうせい シンメトリー 対称 たいしょう algorithm white background indoor SetOptions[RegionPlot3D, PlotRange -&gt; Full, Mesh -&gt; None, Boxed -&gt; False, Axes -&gt; None, PlotPoints -&gt; 200, ImageSize -&gt; 2000, PlotStyle -&gt; Directive[Specularity[White, 30], Texture[Import[&quot;D:/tmp/77.jpg&quot;]]], TextureCoordinateFunction -&gt; ({#1, #2, #3} &amp;), Lighting -&gt; &quot;Neutral&quot;]; RegionPlot3D[x^2 + y^2 + z^2 &lt;= 1 + Sin[5 x] Sin[5 y] Sin[5 z]/2, {x, -1.25, 1.25}, {y, -1.25, 1.25}, {z, -1.25, 1.25}] (* --- Modified from a sample code of RegionPlot3D by Wolfram Research. Texture is this: www.flickr.com/photos/tanaka_juuyoh/4883287465/ *) SetOptions[RegionPlot3D, PlotRange -> Full, Mesh -> None, Boxed -> False, Axes -> None, PlotPoints -> 200, ImageSize -> 2000, PlotStyle -> Directive[Specularity[White, 30], Texture[Import["D:/tmp/77.jpg"]]], TextureCoordinateFunction -> ({#1, #2, #3} &), Lighting -> "Neutral"]; RegionPlot3D[x^2 + y^2 + z^2 <= 1 + Sin[5 x] Sin[5 y] Sin[5 z]/2, {x, -1.25, 1.25}, {y, -1.25, 1.25}, {z, -1.25, 1.25}] (* --- Modified from a sample code of RegionPlot3D by Wolfram Research. Texture is this: www.flickr.com/photos/tanaka_juuyoh/4883287465/ *) |