Skip to main content

Sweep

Extends BooleanOperation

Inherited from BooleanOperation

add()

add(): this

Additive boolean operation — fuses the result with all intersecting scene objects. Use .scope() to target specific objects.


'new'()

'new'(): this

No boolean operation — keeps the result as a standalone shape, separate from all other scene objects.


remove()

remove(): this

Subtractive boolean operation — cuts the result from all intersecting scene objects. Use .scope() to target specific objects.


scope()

scope(...objects: SceneObject[]): this

Narrows the boolean operation scope to specific target objects. Must be chained after .add() or .remove().

ParameterTypeDescription
...objectsSceneObject[]The target objects to operate on. (optional)
Inherited from SceneObject

name()

name(value: string): this

Sets a custom display name for this object, overriding the default type-based name.

ParameterTypeDescription
valuestringThe display name to assign.

reusable()

reusable(): this

Marks this object as reusable. Reusable objects retain their shapes when consumed by features (e.g., extrude, revolve), allowing multiple features to reference the same source geometry. Use remove(obj) to force-remove shapes from a reusable object.

Methods

startFaces()

startFaces(...args: (number | FaceFilterBuilder)[]): SceneObject

Selects faces at the start (profile plane) of the sweep.

Returns: SceneObject

ParameterTypeDescription
...args(number | FaceFilterBuilder)[]Numeric indices or FaceFilterBuilder instances to filter the selection. (optional)

endFaces()

endFaces(...args: (number | FaceFilterBuilder)[]): SceneObject

Selects faces at the end of the sweep path.

Returns: SceneObject

ParameterTypeDescription
...args(number | FaceFilterBuilder)[]Numeric indices or FaceFilterBuilder instances to filter the selection. (optional)

sideFaces()

sideFaces(...args: (number | FaceFilterBuilder)[]): SceneObject

Selects the lateral faces generated by sweeping the profile along the path.

Returns: SceneObject

ParameterTypeDescription
...args(number | FaceFilterBuilder)[]Numeric indices or FaceFilterBuilder instances to filter the selection. (optional)

startEdges()

startEdges(...args: (number | EdgeFilterBuilder)[]): SceneObject

Selects edges on the start faces of the sweep.

Returns: SceneObject

ParameterTypeDescription
...args(number | EdgeFilterBuilder)[]Numeric indices or EdgeFilterBuilder instances to filter the selection. (optional)

endEdges()

endEdges(...args: (number | EdgeFilterBuilder)[]): SceneObject

Selects edges on the end faces of the sweep.

Returns: SceneObject

ParameterTypeDescription
...args(number | EdgeFilterBuilder)[]Numeric indices or EdgeFilterBuilder instances to filter the selection. (optional)

sideEdges()

sideEdges(...args: (number | EdgeFilterBuilder)[]): SceneObject

Selects edges on the side faces, excluding edges shared with start/end faces.

Returns: SceneObject

ParameterTypeDescription
...args(number | EdgeFilterBuilder)[]Numeric indices or EdgeFilterBuilder instances to filter the selection. (optional)

internalFaces()

internalFaces(...args: (number | FaceFilterBuilder)[]): SceneObject

Selects faces created inside the solid during the sweep (e.g., from holes).

Returns: SceneObject

ParameterTypeDescription
...args(number | FaceFilterBuilder)[]Numeric indices or FaceFilterBuilder instances to filter the selection. (optional)

internalEdges()

internalEdges(...args: (number | EdgeFilterBuilder)[]): SceneObject

Selects edges bounding the internal geometry created during the sweep.

Returns: SceneObject

ParameterTypeDescription
...args(number | EdgeFilterBuilder)[]Numeric indices or EdgeFilterBuilder instances to filter the selection. (optional)

draft()

draft(value: number | [number, number]): this

Applies a draft (taper) angle to the sweep walls.

ParameterTypeDescription
valuenumber | [number, number]A single angle for uniform draft, or a [start, end] tuple for asymmetric draft.

endOffset()

endOffset(value: number): this

Offsets the end face by a specified distance along the sweep direction.

ParameterTypeDescription
valuenumberThe offset distance.

drill()

drill(value?: boolean): this

Enables or disables drill mode.

ParameterTypeDescription
valuebooleantrue to enable (default), false to disable. (optional)

pick()

pick(...points: Point2DLike[]): this

Restricts the sweep to only the sketch regions containing the given points.

ParameterTypeDescription
...pointsPoint2DLike[]2D points in the sketch plane identifying regions to sweep. (optional)

thin()

thin(offset: number): this

Enables thin sweep mode — offsets the profile edges to create a thin-walled swept shell instead of sweeping filled faces. Positive values offset outward, negative values offset inward.

ParameterTypeDescription
offsetnumberThe wall offset distance. Positive = outward, negative = inward.

thin()

thin(offset1: number, offset2: number): this

Enables thin sweep mode with two offset directions. The two offsets must go in opposite directions. If both have the same sign, the second offset is automatically flipped.

ParameterTypeDescription
offset1numberThe first wall offset distance. Positive = outward, negative = inward.
offset2numberThe second wall offset distance, in the opposite direction of offset1.

capFaces()

capFaces(...args: (number | FaceFilterBuilder)[]): SceneObject

Selects the cap faces at the open ends of a thin-walled sweep from an open profile. These are the small faces connecting the inner and outer walls at the profile endpoints.

Returns: SceneObject

ParameterTypeDescription
...args(number | FaceFilterBuilder)[]Numeric indices or FaceFilterBuilder instances to filter the selection. (optional)

capEdges()

capEdges(...args: (number | EdgeFilterBuilder)[]): SceneObject

Selects edges on the cap faces of a thin-walled sweep from an open profile.

Returns: SceneObject

ParameterTypeDescription
...args(number | EdgeFilterBuilder)[]Numeric indices or EdgeFilterBuilder instances to filter the selection. (optional)