Skip to main content

fill_holes_rshell

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

Signature

def fill_holes_rshell(shell: 'Shell', hole_indices: 'Optional[Sequence[int]]' = None, *, tolerance: 'float' = 1e-06, settings: 'Optional[SurfaceFillingSettings]' = None, tag_prefix: 'Optional[str]' = None) -> 'Shell'

Description

Fill selected closed free boundaries and return a sewn Shell.

Other public imports

  • from cadflow.surfaces import fill_holes_rshell

Parameters

NameTypeRequiredDefaultSource description
shell'Shell'yes-Not explicitly described in the source docstring.
hole_indices'Optional[Sequence[int]]'noNoneNot explicitly described in the source docstring.
tolerance'float'no1e-06Not explicitly described in the source docstring.
settings'Optional[SurfaceFillingSettings]'noNoneNot explicitly described in the source docstring.
tag_prefix'Optional[str]'noNoneNot explicitly described in the source docstring.

Returns

Type: 'Shell'

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 fill_holes_rshell

See also