SketchArc.split Method
Parent Object:
SketchArcDefined in namespace "adsk::fusion" and the header file is <Fusion/Sketch/SketchArc.h>
Description
Split a curve at a position specified along the curve
Syntax
"sketchArc_var" is a variable referencing a SketchArc object.# Uses no optional arguments. returnValue = sketchArc_var.split(splitPoint)
# Uses optional arguments. returnValue = sketchArc_var.split(splitPoint, createConstraints)
|
"sketchArc_var" is a variable referencing a SketchArc object.
#include <Fusion/Sketch/SketchArc.h>
// Uses no optional arguments. returnValue = sketchArc_var->split(splitPoint);
// Uses optional arguments. returnValue = sketchArc_var->split(splitPoint, createConstraints);
|
Return Value
ObjectCollection |
Returns the resulting 2 curves; the original curve + the newly created curve When split spline the original is deleted and two new curves returned. Empty collection returned if curve is closed. |
Parameters
splitPoint |
Point3D |
A position (transient Point3D) on the curve that defines the point at which to split the curve |
createConstraints |
boolean |
Constraints are created by default. Specify false to create no constraints.
This is an optional argument whose default value is True. |
Samples
Version
Introduced in version August 2014