Skip to main content

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

NameTypeRequiredDefaultSource 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

NameTypeDefault
name'str'required
vertices'np.ndarray'required
normals'np.ndarray'required
triangles'np.ndarray'required
material'FlexibleMaterial'required

Public members

MemberKindSignatureDescription
boundsproperty-See the member signature.
triangle_countproperty-See the member signature.
vertex_countproperty-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

See also