Geometry
- class compas.robots.Geometry(box=None, cylinder=None, sphere=None, capsule=None, mesh=None, **kwargs)[source]
Bases:
Data
Geometrical description of the shape of a link.
- Parameters
box (
compas.geometry.Box
, optional) – A box shape primitive.cylinder (
compas.geometry.Cylinder
, optional) – A cylinder shape primitive.sphere (
compas.geometry.Sphere
, optional) – A sphere shape primitive.capsule (
compas.geometry.Capsule
, optional) – A capsule shape primitive.mesh (
compas.robots.MeshDescriptor
, optional) – A descriptor of a mesh.**kwargs (dict[str, Any], optional) – The keyword arguments (kwargs) collected in a dict. These allow using non-standard attributes absent in the URDF specification.
- Attributes
shape (object) – The shape of the geometry
attr (keyword arguments) – Additional attributes
Examples
>>> box = compas.geometry.Box(Frame.worldXY(), 1, 1, 1) >>> geo = Geometry(box=box)
Methods
Construct an object of this type from the provided data.
Inherited Methods
Make an independent copy of the data object.
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.
Validate the object's data against its json schema.