fillet()
Fillets selected edges with the given radius.
Returns: SceneObject
tip
See the guide for detailed usage examples.
Signatures
fillet(radius?: NumberParam): SceneObject
Fillets selected edges with the given radius.
| Parameter | Type | Description |
|---|---|---|
radius | NumberParam | The fillet radius (defaults to 1) (optional) |
fillet(radius: NumberParam, ...sceneObjects: SceneObject[]): SceneObject
Fillets the given edge selections with the given radius.
| Parameter | Type | Description |
|---|---|---|
radius | NumberParam | The fillet radius |
...sceneObjects | SceneObject[] | The edge selections to fillet (optional) |
fillet(objects: (IGeometry | EdgeFilterBuilder)[]): SceneObject
[2D] Fillets corners between the given geometries.
| Parameter | Type | Description |
|---|---|---|
objects | (IGeometry | EdgeFilterBuilder)[] | The geometries (or edge filters) whose corners to fillet |
fillet(objects: (IGeometry | EdgeFilterBuilder)[], radius: NumberParam): SceneObject
[2D] Fillets corners between the given geometries with a radius.
| Parameter | Type | Description |
|---|---|---|
objects | (IGeometry | EdgeFilterBuilder)[] | The geometries (or edge filters) whose corners to fillet |
radius | NumberParam | The fillet radius |
fillet(radius: NumberParam, ...objects: (IGeometry | SceneObject | EdgeFilterBuilder)[]): SceneObject
[2D] Fillets corners at the given radius and geometries.
| Parameter | Type | Description |
|---|---|---|
radius | NumberParam | The fillet radius |
...objects | (IGeometry | SceneObject | EdgeFilterBuilder)[] | The geometries, edge accessors (r.edge('top')), or edge filters (edge().line()) whose corners to fillet (optional) |