EntityInspectionParity
Kind: Class
Domain: Inspection
Canonical import: from cadflow.inspect.brep import EntityInspectionParity
Signature
class EntityInspectionParity(source: 'str | None', valid: 'bool', issues: 'tuple[str, ...]', checked_faces: 'int', checked_edges: 'int', degenerate_edges: 'int') -> None
Description
Result of checking stable entity output against a BRepInspection report.
Parameters
| Name | Type | Required | Default | Source description |
|---|---|---|---|---|
source | 'str | None' | yes | - | Not explicitly described in the source docstring. |
valid | 'bool' | yes | - | Not explicitly described in the source docstring. |
issues | 'tuple[str, ...]' | yes | - | Not explicitly described in the source docstring. |
checked_faces | 'int' | yes | - | Not explicitly described in the source docstring. |
checked_edges | 'int' | yes | - | Not explicitly described in the source docstring. |
degenerate_edges | 'int' | yes | - | Not explicitly described in the source docstring. |
Returns
Type: None
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.
Data fields
| Name | Type | Default |
|---|---|---|
source | 'str | None' | required |
valid | 'bool' | required |
issues | 'tuple[str, ...]' | required |
checked_faces | 'int' | required |
checked_edges | 'int' | required |
degenerate_edges | 'int' | required |
Public members
| Member | Kind | Signature | Description |
|---|---|---|---|
to_dict | method | (self) -> 'dict[str, Any]' | See the member signature. |
Behavior and constraints
- Instances are immutable dataclass values; update workflows return a replacement value.
Import check
from cadflow.inspect.brep import EntityInspectionParity