Gogf
Indescribable
Thanks Aaglo, that's exactly what I was looking for! Okay, I'll make the edits that I can, and it should be what I want.
EDIT: Um, it pulls out the
line. What is wrong with this:
EDIT: Um, it pulls out the
Code:
rotate y*yrot // Equivalent to "rotate <0,20,0>"
line. What is wrong with this:
Code:
#include "colors.inc"
#include "stones.inc"
background { color Magenta }
camera {orthographic location <0,66,-124>*0.1
angle 27
look_at <0,4,0>*0.1 }
#declare yrot = -130 ; //0,-48,-90,-132,180,132,90,48
sphere {<0,0,0> //location of the center
1 //radius
scale <1,0.5,1> //scaling in x, y and z-direction
clipped_by{
box{<-2,-2,-2> //first corner
<2,0,2> //the other corner
}//end of box
}//end of clipped_by
pigment {Yellow}
}//end of sphere
rotate y*yrot // Equivalent to "rotate <0,20,0>"
}
light_source { <2, 4, -3> color White}