FlexiblePanel
Kind: Class
Domain: Flexible geometry
Canonical import: from cadflow.flexible import FlexiblePanel
Signature
class FlexiblePanel(name: 'str', control_points: 'Sequence[Sequence[Sequence[float]]]', sample_rows: 'int' = 12, sample_columns: 'int' = 12, periodic_columns: 'bool' = False, material: 'FlexibleMaterial' = <factory>) -> None
Description
One static flexible panel represented by a rectangular control grid.
Parameters
| Name | Type | Required | Default | Source description |
|---|---|---|---|---|
name | 'str' | yes | - | Not explicitly described in the source docstring. |
control_points | 'Sequence[Sequence[Sequence[float]]]' | yes | - | Not explicitly described in the source docstring. |
sample_rows | 'int' | no | 12 | Not explicitly described in the source docstring. |
sample_columns | 'int' | no | 12 | Not explicitly described in the source docstring. |
periodic_columns | 'bool' | no | False | Not explicitly described in the source docstring. |
material | 'FlexibleMaterial' | no | <factory> | 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 |
control_points | 'Sequence[Sequence[Sequence[float]]]' | required |
sample_rows | 'int' | 12 |
sample_columns | 'int' | 12 |
periodic_columns | 'bool' | False |
material | 'FlexibleMaterial' | factory |
Public members
| Member | Kind | Signature | Description |
|---|---|---|---|
build | method | (self) -> "'FlexiblePanelMesh'" | See the member signature. |
control_columns | property | - | See the member signature. |
control_rows | 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 FlexiblePanel