man SoNurbsSurface () - NURBS surface shape node

NAME

SoNurbsSurface - NURBS surface shape node

INHERITS FROM

SoBase > SoFieldContainer > SoNode > SoShape > SoNurbsSurface

SYNOPSIS

#include <Inventor/nodes/SoNurbsSurface.h> Fields from class SoNurbsSurface: c } c } numUControlPoints

c } c } numVControlPoints

c } c } numSControlPoints

c } c } numTControlPoints

c } c } uKnotVector

c } c } vKnotVector

c } c } sKnotVector

c } c } tKnotVector Methods from class SoNurbsSurface: c } c } SoNurbsSurface()

c } c } getClassTypeId() Methods from class SoNode: c } c } setOverride(SbBool state)

c } c } isOverride() const

c } c } copy(SbBool copyConnections = FALSE) const

c } c } affectsState() const

c } c } getByName(const SbName &name)

c } c } getByName(const SbName &name, SoNodeList &list) Methods from class SoFieldContainer: c } c } setToDefaults()

c } c } hasDefaultValues() const

c } c } fieldsAreEqual(const SoFieldContainer *fc) const

c } c } copyFieldValues(const SoFieldContainer *fc, SbBool copyConnections = FALSE)

c } c } set(const char *fieldDataString)

c } c } get(SbString &fieldDataString)

c } c } getFields(SoFieldList &resultList) const

c } c } getField(const SbName &fieldName) const

c } c } getFieldName(const SoField *field, SbName &fieldName) const

c } c } isNotifyEnabled() const

c } c } enableNotify(SbBool flag) Methods from class SoBase: c } c } ref()

c } c } unref() const

c } c } unrefNoDelete() const

c } c } touch()

c } c } getTypeId() const

c } c } isOfType(SoType type) const

c } c } setName(const SbName &name)

c } c } getName() const

DESCRIPTION

This shape node represents a NURBS surface based on the node's knot vectors and on control points constructed from the current coordinates. The current coordinates are used in row-major order (the V direction corresponds to the rows). The number of coordinates used is determined by the numUControlPoints and numVControlPoints fields. The uKnotVector and vKnotVector fields contain floating point arrays of non-decreasing values. The order of the surface in the U and V directions is defined as the number of knots minus the number of control points in the particular direction. The largest order allowed for a NURBS surface is 8. The control points of the NURBS surface are transformed by the current cumulative transformation. The surface is drawn with the current light model and drawing style. The coordinates, normals, and texture coordinates of a surface are generated, so you cannot bind explicit normals or texture coordinates to a NURBS surface. The first material in the state is applied to the entire surface. The surface is trimmed according to the currently defined profile's curves. When default texture coordinates are applied to a NURBS surface, the edges of the texture square are stretched to fit the surface. The axes of the texture are called S and T; S is horizontal and T is vertical. The axes of the NURBS surface are called U and V; U is horizontal and V is vertical. You can also define texture coordinates explicitly with the S,T location point, the knot vectors, and the current texture coordinates. The approximation of the surface by polygons is affected by the current complexity value.

FIELDS

c } c } numUControlPoints

c } c } numVControlPoints

Number of control points in the U and V directions. c } c } numSControlPoints

c } c } numTControlPoints

Number of control points in the S and T directions. c } c } uKnotVector

c } c } vKnotVector

The knot vectors in the U and V directions. c } c } sKnotVector

c } c } tKnotVector

The knot vectors in the S and T directions.

METHODS

c } c } SoNurbsSurface()

Creates a NURBS surface node with default settings. c } c } getClassTypeId()

Returns type identifier for this class.

ACTION BEHAVIOR

SoGLRenderAction

Draws the surface based on the current coordinates, material, and so on. SoRayPickAction

Picks the surface based on the current coordinates and transformation. SoGetBoundingBoxAction

Computes the bounding box that encloses all control points of the surface with the current transformation applied to them. Sets the center to the average of the control points. SoCallbackAction

If any triangle callbacks are registered with the action, they will be invoked for each successive triangle approximating the surface.

FILE FORMAT/DEFAULTS

NurbsSurface {
numUControlPoints	0
numVControlPoints	0
numSControlPoints	0
numTControlPoints	0
uKnotVector	0
vKnotVector	0
sKnotVector	0
tKnotVector	0
}

SEE ALSO

SoIndexedNurbsSurface, SoNurbsCurve, SoProfile