Skip to main content

fillet_rsolid

Kind: Function
Domain: Modeling and geometry
Canonical import: from cadflow import fillet_rsolid

Signature

def fillet_rsolid(solid: 'Solid', edges: 'Union[Sequence[Edge], ShapeSelector]', radius: 'ScalarLike', *, result_tag: 'Optional[str]' = None, generated_faces_tag: 'Optional[str]' = None) -> 'Solid'

Description

Apply fillets, with optional tagging of kernel-proven patch faces.

Parameters

NameTypeRequiredDefaultSource description
solid'Solid'yes-Not explicitly described in the source docstring.
edges'Union[Sequence[Edge], ShapeSelector]'yes-Not explicitly described in the source docstring.
radius'ScalarLike'yes-Not explicitly described in the source docstring.
result_tag'Optional[str]'noNoneNot explicitly described in the source docstring.
generated_faces_tag'Optional[str]'noNoneNot explicitly described in the source docstring.

Returns

Type: 'Solid'

The source docstring does not declare additional return semantics.

Errors

The source docstring does not declare a narrower exception contract. Invalid types, values, ownership, paths, or backend state may still raise the corresponding public error.

Behavior and constraints

  • The contract below is generated from the current public runtime signature. Check domain notes for ownership and workflow constraints.

Import check

from cadflow import fillet_rsolid

See also