Click or drag to resize

SubDVertexSetControlNetPoint Method

Change the location of the "control net" point that this SubDVertex represents

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 8.0
Syntax
public bool SetControlNetPoint(
	Point3d position,
	bool bClearNeighborhoodCache
)

Parameters

position
Type: Rhino.GeometryPoint3d
New position for the vertex' control net point.
bClearNeighborhoodCache
Type: SystemBoolean
If true, clear the evaluation cache in the faces around the modified vertex.

Return Value

Type: Boolean
true if the vertex' control net point was modified.
Remarks
This method is provided to be able to set multiple control vertices, without clearing the neighborhood cache everytime as the ControlNetPoint property setter does. When you are done modifying your SubD, call subd.UpdateEvaluationCache() to refresh all caches.
See Also