NURBSFuseCurveCV Class Reference
 
 
 
NURBSFuseCurveCV Class Reference

#include <surf_api.h>

Inheritance diagram for NURBSFuseCurveCV:
MaxHeapOperators

Class Description

See also:
Class NURBSSurface, Class NURBSSet, Class NURBSControlVertex, Class NURBSPoint, Class NURBSCurve, Class NURBSFuseSurfaceCV.

Description:
used with a NURBSSet to fuse two CVs in a curve. This causes the CVs to reference one another so if you move one the other moves with it.

All methods of this class are implemented by the system.
Data Members:
int mCurve1, mCurve2;

The zero based indices of the curves to fuse. These may be the same value. Note that this is not the index in the NURBSSet of these items. Rather it is the index of CV curve in list of CV curves in the NURBSSet. For instance, if there were first two CV surfaces and then two CV curves in the NURBSSet, mCurve1 would be 0 and mCurve2 would be 1 since the CV surfaces don't count.

int mCV1, mCV2;

The indices of the CVs of curve1 and curve2 to fuse.

Public Member Functions

DllExport  NURBSFuseCurveCV ()

Public Attributes

int  mCurve1
int  mCurve2
int  mCV1
int  mCV2

Constructor & Destructor Documentation

DllExport NURBSFuseCurveCV ( )
Remarks:
Constructor. The data members are initialized as follows:

mCurve1 = mCurve2 = 0;

mCV1 = mCV2 = 0;

Member Data Documentation