FlexiblePanelMesh
Kind: Class
Domain: Flexible geometry
Canonical import: from cadflow.flexible import FlexiblePanelMesh
Signature
class FlexiblePanelMesh(name: 'str', vertices: 'np.ndarray', normals: 'np.ndarray', triangles: 'np.ndarray', material: 'FlexibleMaterial') -> None
Description
FlexiblePanelMesh(name: 'str', vertices: 'np.ndarray', normals: 'np.ndarray', triangles: 'np.ndarray', material: 'FlexibleMaterial')
Parameters
| Name | Type | Required | Default | Source description |
|---|---|---|---|---|
name | 'str' | yes | - | Not explicitly described in the source docstring. |
vertices | 'np.ndarray' | yes | - | Not explicitly described in the source docstring. |
normals | 'np.ndarray' | yes | - | Not explicitly described in the source docstring. |
triangles | 'np.ndarray' | yes | - | Not explicitly described in the source docstring. |
material | 'FlexibleMaterial' | 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 |
|---|---|---|
name | 'str' | required |
vertices | 'np.ndarray' | required |
normals | 'np.ndarray' | required |
triangles | 'np.ndarray' | required |
material | 'FlexibleMaterial' | required |
Public members
| Member | Kind | Signature | Description |
|---|---|---|---|
bounds | property | - | See the member signature. |
triangle_count | property | - | See the member signature. |
vertex_count | property | - | See the member signature. |
Behavior and constraints
- Instances are immutable dataclass values; update workflows return a replacement value.
Import check
from cadflow.flexible import FlexiblePanelMesh