Part
- class compas.datastructures.Part(name=None, frame=None, shape=None, features=None, **kwargs)[source]
Bases:
compas.datastructures.datastructure.DatastructureA data structure for representing assembly parts.
- Parameters
name (str, optional) – The name of the part. The name will be stored in
Part.attributes.frame (
compas.geometry.Frame, optional) – The local coordinate system of the part.shape (
compas.geometry.Shape, optional) – The base shape of the part geometry.features (list of tuple(
compas.geometry.Shape, str), optional) – The features to be added to the base shape of the part geometry.
- Attributes
attributes (dict) – General object attributes that will be included in the data dict.
key (int or str) – The identifier of the part in the connectivity graph of the parent assembly.
frame (
compas.geometry.Frame) – The local coordinate system of the part.shape (
compas.geometry.Shape) – The base shape of the part geometry.features (list of tuple(
compas.geometry.Shape, str)) – The features added to the base shape of the part geometry.transformations (deque of
compas.geometry.Transformation) – The stack of transformations applied to the part geometry. The most recent transformation is on the left of the stack. All transformations are with respect to the local coordinate system.
Attributes
DATASCHEMAThe schema of the data of this object.
JSONSCHEMANAMEdataA data dict representing the part attributes, the assembly graph identifier, the local coordinate system, the base shape, the shape features, and the transformation tack wrt to the local coordinate system.
framegeometrynameThe name of the part.
operationsInherited Attributes
JSONSCHEMAThe schema of the JSON representation of the data of this object.
dtypeThe type of the object in the form of a '2-level' import and a class name.
guidThe globally unique identifier of the object.
jsondefinitionsReusable schema definitions.
jsonstringThe representation of the object data in JSON format.
jsonvalidatorJSON schema validator for draft 7.
Methods
Add a feature to the shape of the part and the operation through which it should be integrated.
Convert the part geometry to a mesh.
Transform the part with respect to the local cooordinate system.
Inherited Methods
Make an independent copy of the data object.
Construct an object of this type from the provided data.
Construct an object from serialized data contained in a JSON file.
Construct an object from serialized data contained in a JSON string.
Convert an object to its native data representation.
Serialize the data representation of an object to a JSON file.
Serialize the data representation of an object to a JSON string.
Validate the object's data against its data schema (self.DATASCHEMA).
Validate the object's data against its json schema (self.JSONSCHEMA).