//=time() ?>
#include "colors"
#include "skies"
camera{location<0,0,-2>right x}
light_source{<9,9,-9>1}
#macro F(r)
difference{
sphere{0,r}
sphere{0,r-.1}
box{-1<0,1,1>}
box{<.1,-1,-1>1}
rotate r*777
pigment{rgb.1}
}
#end
sky_sphere{S_Cloud5}
F(1)F(.9)F(.8)F(.7)F(.6)F(.5)F(.4)
#つぶやきPOVRay
本日のP3D図形ばらまきガチャ #Processing
これまでのrect, ellipseのかわりにboxやsphereをばらまいてみる。深海生物感。
size(800,800,P3D)
background(20)
translate(400,400,0)
for j in range(6):
rotateZ(1.05)
with push():
for i in range(99):
translate(65,0,0)
rotateX(.1)
rotateY(.2)
scale(.95)
fill(abs(sin(i+j))*200)
box(100)
#つぶやきProcessing