buckeyevr

Untitled

Feb 22nd, 2019
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. groupExtraCredit.bvr\n\n//Parametric surface\nt=parametricSurface\nt.setMinMax=s,0,3.14\nt.setMinMax=t,0,6.28\nt.setEquation=x,(4*sin(s)*cos(t))\nt.setEquation=y,((4*sin(s)*sin(t))\nt.setEquation=z,(4*cos(s))\nt.setSegmentCount=10\nt.spawn\n\n\n//Hours Hand\nz=vectorDraw\nz.setTail=0,0,0\nz.setHead=0,0,3\nz.color=blue\nz.setRadius=0.0.5\nz.spawn\n\n//Minutes hand\nz2 = vectorDraw\nz2.setTail = 0,0,0\nz2.setHead = 4,0, 0\nz2.color = blue\nz2.setRadius =0.5\nz2.spawn\n\n/Seconds Hand\nz3 = vectorDraw\nz3.setTail = 0,0,0\nz3.setHead = -3.5,0,-2\nz.color = green\nz.setRadius = 0.5\nz3.spawn\n\n//Text\ntxt=text\ntxt.text=Clock (3pm 40 sec)\ntxt.color=green\ntxt.position=0,0,5\n\ntxt2=text\ntxt2.text = 12\ntxt.color = red\ntxt2.position = 0,0,4.5\n\nTxt2 = text\nTxt2.text = 6\nTxt.color = red\nTxt2.position = 0,0,-4.5\n\nTxt3 = text\nTxt3.text = 3\nTxt.color = red\nTxt3.position = 4.5, 0, 0\n\nTxt4 = text\nTxt4.text = 9\nTxt.color = red\nTxt4.position = -4.5,0, 0\n\n\n\n
Add Comment
Please, Sign In to add comment