SketchArcs.addFillet Method
Parent Object:
SketchArcsDefined in namespace "adsk::fusion" and the header file is <Fusion/Sketch/SketchArcs.h>
Description
Creates a fillet between two sketch entities The side (quadrant) the fillet is created on is determined by the points specified. The point for each entity can be its startSketchPoint or endSketchPoint
Syntax
"sketchArcs_var" is a variable referencing a SketchArcs object.returnValue = sketchArcs_var.addFillet(firstEntity, firstEntityPoint, secondEnitity, secondEntityPoint, radius)
|
"sketchArcs_var" is a variable referencing a SketchArcs object.
#include <Fusion/Sketch/SketchArcs.h>
returnValue = sketchArcs_var->addFillet(firstEntity, firstEntityPoint, secondEnitity, secondEntityPoint, radius);
|
Return Value
SketchArc |
Returns the newly created SketchArc object (fillet) if the operation was successful or null if it failed. |
Parameters
firstEntity |
SketchCurve |
The first curve for the fillet definition. The curve must be open. |
firstEntityPoint |
Point3D |
A point on or closer to one end of the first curve that indicates the side to create the fillet on |
secondEnitity |
SketchCurve |
The second curve for the fillet definition. The curve must be open. |
secondEntityPoint |
Point3D |
A point on or closer to one end of the second curve that indicates the side to create the fillet on |
radius |
double |
radius of the arc in centimeters |
Samples
Version
Introduced in version August 2014