v5.0
modeling drawing
Inserts a new knot with the given multiplicity at the specified curve location. A multiplicity of one will create only one CV (control vertex) for this knot but without discontinuity control (unless the curve is linear). A multiplicity of three for a cubic curve will create three CVs for this knot and thus will let you have full control of the discontinuity (creating a corner, for example).
oReturn = InsertCurveKnot( [ConnectionSet], [Multiplicity], [ImmediateMode] ); |
XSICollection of
Operators.
Note: If the ImmediateMode parameter is set to
siImmediateOperation, no operators are returned.
Parameter | Type | Description | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
ConnectionSet | ConnectionSet | Specifies the curve location for inserting the new knot. See
OpPreset for details on the
connection set required for this operator.
Default Value:
Currently selected components. |
||||||||
Multiplicity | Integer | Multiplicity of the knots
Default Value: 1
|
||||||||
ImmediateMode | siOperationMode | Specifies whether or not the operator should be immediately
frozen.
Default Value: siPersistentOperation |
' ' This example creates a simple curve, selects an isopoint, and creates a bezier-knot ' at this location. ' SICreateCurve "crvlist", 3, 0 SIAddPointOnCurveAtEnd "crvlist", -4, 2, 0, False, 0 SIAddPointOnCurveAtEnd "crvlist", -5, -2, 0, False, 0 SIAddPointOnCurveAtEnd "crvlist", -2, -2, 0, False, 0 SIAddPointOnCurveAtEnd "crvlist", -1, 2, 0, False, 0 SIAddPointOnCurveAtEnd "crvlist", 2, 2, 0, False, 0 SIAddPointOnCurveAtEnd "crvlist", 2, -2, 0, False, 0 SetSelFilter "Isopoint" SelectObj "crvlist.isopnt[(0,0.489)]" InsertCurveKnot "crvlist.isopnt[(0,0.489)]", 3, siPersistentOperation |
/* This example creates a simple curve, selects an isopoint, and creates a bezier-knot at this location. */ SICreateCurve("crvlist", 3, 0); SIAddPointOnCurveAtEnd("crvlist", -4, 2, 0, false, 0); SIAddPointOnCurveAtEnd("crvlist", -5, -2, 0, false, 0); SIAddPointOnCurveAtEnd("crvlist", -2, -2, 0, false, 0); SIAddPointOnCurveAtEnd("crvlist", -1, 2, 0, false, 0); SIAddPointOnCurveAtEnd("crvlist", 2, 2, 0, false, 0); SIAddPointOnCurveAtEnd("crvlist", 2, -2, 0, false, 0); SetSelFilter("Isopoint"); SelectObj("crvlist.isopnt[(0,0.489)]", null, null); InsertCurveKnot("crvlist.isopnt[(0,0.489)]", 3, siPersistentOperation); |