Skip to main content

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

NameTypeRequiredDefaultSource 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'no12Not explicitly described in the source docstring.
sample_columns'int'no12Not explicitly described in the source docstring.
periodic_columns'bool'noFalseNot explicitly described in the source docstring.
material'FlexibleMaterial'no&lt;factory&gt;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

NameTypeDefault
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

MemberKindSignatureDescription
buildmethod(self) -&gt; "'FlexiblePanelMesh'"See the member signature.
control_columnsproperty-See the member signature.
control_rowsproperty-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

See also