
POV-RAYへコピペでまったく同じ画像がレンダリングできます。
すごく簡単な構文で、短いので、初心者にはわかりやすいんじゃないかと思います。
camera { location < 50, 40, 0 > look_at < -10, 0, 0 > }
light_source { < 60, 100, 0> color rgb 1.0 }
plane { y, 0 pigment { checker White,Black scale 20 } finish { ambient 0.2 diffuse 0.6 reflection 0.6 } }
box { < -1, 5, 1,> < -11, 15, 11,> pigment { color Red } finish { ambient 0.2 diffuse 1.00 } }
box { < -1, 5,-1,> < -11, 15,-11,> pigment { color Orange } finish { ambient 0.2 diffuse 1.00 } }
上から見たらこんな感じ。

camera { location < 0, 70, 0 > look_at < -3 0, 0 > }
light_source { < 60, 100, 0> color rgb 1.0 }
plane { y, 0 pigment { checker White,Black scale 20 } finish { ambient 0.2 diffuse 0.6 reflection 0.6 } }
box { < -1, 5, 1,> < -11, 15, 11,> pigment { color Red } finish { ambient 0.2 diffuse 1.00 } }
box { < -1, 5,-1,> < -11, 15,-11,> pigment { color Orange } finish { ambient 0.2 diffuse 1.00 } }
- 関連記事
-
-
superellipsoid POV-RAY 2015/02/19
-
わかりやすいの作ったので置いとく 2015/02/14
-
difference POV-RAY 2015/02/07
-