| Function Name | Description |
|---|---|
| XintView3DChangeEditVectorDir | Changes the direction of the edit vector. |
| XintView3DChangeEditVectorLoc | Changes the location of the edit vector. |
| XintView3DDisableEditVector | Disable editing of objects. |
| XintView3DVectorGetCount | Get the number of vertices in the specified object. |
| XintView3DVectorGetValue | Get the object vertex value at the specified index. |
| XintView3DEnableEditVector | Enable editing of objects. |
| XintView3DUpdateModel | Recalculate the object limits after an object has been modified. |
| XintView3DUpdateObject | Update an object after it has been edited. |
| XintView3DVectorSetValue | Set a new vertex value for the specified object. |
void XintView3DChangeEditVectorDir (...)
| Widget | widget | ID of the View3D widget. |
| XintVector3 | new_direction | The new direction for the edit vector. |
void XintView3DChangeEditVectorLoc (...)
| Widget | widget | ID of the View3D widget. |
| XintVector3 | new_location | The new location for the edit vector. |
void XintView3DDisableEditVector (...)
| Widget | widget | ID of the View3D widget. |
int XintView3DVectorGetCount (...)
| XintView3DObject * | object | ID of the object of interest. |
void XintView3DVectorGetValue (...)
| XintView3DObject * | object | The object (must be a Surface, Line or Point object). |
| int | index | Index of the vertex (between 0 and nvertices-1). |
| XintVector3 | value | Contains the value of the vertex at the specified index when the function returns. |
void XintView3DEnableEditVector (...)
| Widget | widget | View3D widget. |
| XintVector3 | location | Origin of the point to edit. |
| XintVector3 | direction | Direction where editing is constrained. |
| XintView3DEditVectorType | type | Set to XintEDIT_VECTOR_LINE. |
| XintView3DEditVectorLimits | limits | Set to XintLIMIT_NONE for no limits, or XintLIMIT_MODEL to limit to model boundary, or XintLIMIT_USER to limit to user coords specified as next two arguments. |
| XintVector3 | top_user_limit | Top user limit. |
| XintVector3 | bot_user_limit | Bottom user limit. |
void XintView3DUpdateModel (...)
| Widget | widget | ID of the View3D widget. |
void XintView3DUpdateObject (...)
| XintView3DObject | object | ID of the View3D object of interest. |
void XintView3DVectorSetValue (...)
| XintView3DObject * | object | Object to modify (must be a Surface, Line or Point object). |
| int | index | Index of the vertex (between 0 and nvertices-1). |
| XintVector3 | value | New vertex value. |