Sketch.findConnectedCurves Method

Parent Object: Sketch
Defined in namespace "adsk::fusion" and the header file is <Fusion/Sketch/Sketch.h>

Description

Finds the sketch curves that are end connected to the input curve. This can be useful for many cases but is especially useful in gathering the input when creating an offset.

Syntax

"sketch_var" is a variable referencing a Sketch object.
returnValue = sketch_var.findConnectedCurves(curve)
"sketch_var" is a variable referencing a Sketch object.

#include <Fusion/Sketch/Sketch.h>

returnValue = sketch_var->findConnectedCurves(curve);

Return Value

Type Description
ObjectCollection A collection of the connected curves. They are returned in their connected order with the original input curve being one of the curves.

Parameters

Name Type Description
curve SketchCurve The initial sketch curve that will be used to find the connected curves.

Samples

Name Description
Sketch fillet and offset API Sample Demonstrates the creation of a fillet in a sketch and offset a set of curves.

Version

Introduced in version August 2014