#include <Inventor/nodes/SoNurbsSurface.h>
Inheritance diagram for SoNurbsSurface:
Public Member Functions | |
SoNurbsSurface (void) | |
virtual void | GLRender (SoGLRenderAction *action) |
virtual void | rayPick (SoRayPickAction *action) |
virtual void | getPrimitiveCount (SoGetPrimitiveCountAction *action) |
void | sendPrimitive (SoAction *, SoPrimitiveVertex *) |
Static Public Member Functions | |
void | initClass (void) |
Public Attributes | |
SoSFInt32 | numUControlPoints |
SoSFInt32 | numVControlPoints |
SoSFInt32 | numSControlPoints |
SoSFInt32 | numTControlPoints |
SoMFFloat | uKnotVector |
SoMFFloat | vKnotVector |
SoMFFloat | sKnotVector |
SoMFFloat | tKnotVector |
Protected Member Functions | |
virtual | ~SoNurbsSurface () |
virtual void | generatePrimitives (SoAction *action) |
virtual void | computeBBox (SoAction *action, SbBox3f &box, SbVec3f ¢er) |
SoDetail * | createTriangleDetail (SoRayPickAction *action, const SoPrimitiveVertex *v1, const SoPrimitiveVertex *v2, const SoPrimitiveVertex *v3, SoPickedPoint *pp) |
Explaining NURBS is beyond the scope of this documentation. If you are unfamiliar with the principles of representing smooth curves and surfaces when doing 3D visualization, we recommend finding a good book on the subject.
|
Constructor. |
|
Destructor. |
|
Sets up initialization for data common to all instances of this class, like submitting necessary information to the Coin type system. Reimplemented from SoShape. |
|
Action method for the SoGLRenderAction. This is called during rendering traversals. Nodes influencing the rendering state in any way or who wants to throw geometry primitives at OpenGL overrides this method. Reimplemented from SoShape. |
|
Calculates picked point based on primitives generated by subclasses. Reimplemented from SoShape. |
|
Action method for the SoGetPrimitiveCountAction. Calculates the number of triangle, line segment and point primitives for the node and adds these to the counters of the action. Nodes influencing how geometry nodes calculates their primitive count also overrides this method to change the relevant state variables. Reimplemented from SoShape. |
|
This method is part of the original SGI Inventor API, but not implemented in Coin, as it looks like a method that should probably have been private in Open Inventor. |
|
The method implements action behavior for shape nodes for SoCallbackAction. It is invoked from SoShape::callback(). (Subclasses should not override SoNode::callback().) The subclass implementations uses the convenience methods SoShape::beginShape(), SoShape::shapeVertex(), and SoShape::endShape(), with SoDetail instances, to pass the primitives making up the shape back to the caller. Implements SoShape. |
|
Calculates the bounding box of all control points, and sets the center to the average of these points. Implements SoShape. |
|
Will create triangle detail for a SoPickedPoint. This method will only be called internally, when generatePrimitives() is used for picking (SoShape::rayPick() is not overridden).
This method returns This is not necessary with Coin. Of course, if you choose to override it, it will work in the same way as Open Inventor.
For this to work, you must supply a face or line detail when generating primitives. If you supply Reimplemented from SoShape. |
|
Number of control points in the U direction. |
|
Number of control points in the V direction. |
|
Number of control points in the S direction. |
|
Number of control points in the T direction. |
|
The Bezier knot vector for the U direction. |
|
The Bezier knot vector for the V direction. |
|
The Bezier knot vector for the S direction. |
|
The Bezier knot vector for the T direction. |