home *** CD-ROM | disk | FTP | other *** search
/ Late Night VRML 2.0 with Java CD-ROM / code.zip / Ch15 / Squig.wrl < prev    next >
Text File  |  1997-01-30  |  806b  |  35 lines

  1. #VRML V2.0 utf8
  2.  
  3.  
  4. EXTERNPROTO NurbsCurve [ field SFBool   debug
  5.                          field SFInt32  segments
  6.                          field MFFloat  knotSequence
  7.                          field MFFloat  controlPoints ]
  8. "http://www.ocnus.com/nurbs/NurbsCurve.wrl"
  9.  
  10.  
  11.  
  12. Viewpoint {
  13.   position       0 0 5
  14.   orientation    0 0 1  0
  15.   fieldOfView    0.785398
  16.   description    "NURBS Cubic Curve"
  17. }
  18.  
  19. Shape {
  20.   appearance
  21.       Appearance {
  22.         material
  23.            Material { diffuseColor 1 1 0 }
  24.       }
  25.   geometry
  26.       NurbsCurve {       # Cubic Curve
  27.         segments         100
  28.         knotSequence  [  0, 0, 0, 0, 1, 1, 1, 1, ]
  29.         controlPoints [ -3  -1.5  0  1,
  30.                         -1   1.5  0  1,
  31.                          1  -1.5  0  1,
  32.                          3   1.5  0  1, ]
  33.       }
  34. }
  35.