Skip to main content

evaluate_reconstruction_rdescriptor

Kind: Function
Domain: Inspection
Canonical import: from cadflow.inspect.brep import evaluate_reconstruction_rdescriptor

Signature

def evaluate_reconstruction_rdescriptor(target: 'ModelInput', current: 'ModelInput', *, replay_succeeded: 'bool', boundary_tolerance: 'float' = 0.1, bounding_box_tolerance: 'float' = 0.1, relative_volume_tolerance: 'float' = 0.001, relative_area_tolerance: 'float' = 0.001, relative_material_tolerance: 'float' = 0.001, linear_deflection: 'float' = 0.5, max_samples: 'int' = 600, boolean_tolerance: 'float | None' = None, strict_geometric_tolerance: 'float' = 1e-06, strict_material_tolerance: 'float' = 1e-06, require_strict_brep: 'bool' = False) -> 'dict[str, Any]'

Description

Apply replay, validity, material, boundary, and optional strict gates.

Parameters

NameTypeRequiredDefaultSource description
target'ModelInput'yes-Not explicitly described in the source docstring.
current'ModelInput'yes-Not explicitly described in the source docstring.
replay_succeeded'bool'yes-Not explicitly described in the source docstring.
boundary_tolerance'float'no0.1Not explicitly described in the source docstring.
bounding_box_tolerance'float'no0.1Not explicitly described in the source docstring.
relative_volume_tolerance'float'no0.001Not explicitly described in the source docstring.
relative_area_tolerance'float'no0.001Not explicitly described in the source docstring.
relative_material_tolerance'float'no0.001Not explicitly described in the source docstring.
linear_deflection'float'no0.5Not explicitly described in the source docstring.
max_samples'int'no600Not explicitly described in the source docstring.
boolean_tolerance'float | None'noNoneNot explicitly described in the source docstring.
strict_geometric_tolerance'float'no1e-06Not explicitly described in the source docstring.
strict_material_tolerance'float'no1e-06Not explicitly described in the source docstring.
require_strict_brep'bool'noFalseNot explicitly described in the source docstring.

Returns

Type: 'dict[str, Any]'

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.inspect.brep import evaluate_reconstruction_rdescriptor

See also