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
"sketchArcs_var" is a variable referencing a SketchArcs object.
|
"sketchArcs_var" is a variable referencing a SketchArcs object.
|
Type | Description |
SketchArc | Returns the newly created SketchArc object (fillet) if the operation was successful or null if it failed. |
Name | Type | Description |
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 |
Name | Description |
Sketch fillet and offset API Sample | Demonstrates the creation of a fillet in a sketch and offset a set of curves. |