Skip to content

Geometry

This module contains classes for representing geometry in Onshape.

Class
  • BaseGeometry: Abstract base class for geometry objects.
  • BoxGeometry: Represents a box geometry.
  • CylinderGeometry: Represents a cylinder geometry.
  • SphereGeometry: Represents a sphere geometry.
  • MeshGeometry: Represents a mesh geometry.

BaseGeometry dataclass

Bases: ABC

Abstract base class for geometry objects.

Abstract Methods

to_xml: Converts the geometry object to an XML element.

Source code in onshape_robotics_toolkit\models\geometry.py
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
@dataclass
class BaseGeometry(ABC):
    """
    Abstract base class for geometry objects.

    Abstract Methods:
        to_xml: Converts the geometry object to an XML element.
    """

    @abstractmethod
    def to_xml(self, root: Optional[ET.Element] = None) -> ET.Element: ...

    @abstractmethod
    def to_mjcf(self, root: ET.Element) -> None: ...

    @classmethod
    @abstractmethod
    def from_xml(cls, element: ET.Element) -> "BaseGeometry": ...

    @property
    @abstractmethod
    def geometry_type(self) -> str: ...

BoxGeometry dataclass

Bases: BaseGeometry

Represents a box geometry.

Attributes:

Name Type Description
size tuple[float, float, float]

The size of the box in the x, y, and z dimensions.

Methods:

Name Description
to_xml

Converts the box geometry to an XML element.

Examples:

>>> box = BoxGeometry(size=(1.0, 2.0, 3.0))
>>> box.to_xml()
<Element 'geometry' at 0x7f8b3c0b4c70>
Source code in onshape_robotics_toolkit\models\geometry.py
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
@dataclass
class BoxGeometry(BaseGeometry):
    """
    Represents a box geometry.

    Attributes:
        size (tuple[float, float, float]): The size of the box in the x, y, and z dimensions.

    Methods:
        to_xml: Converts the box geometry to an XML element.

    Examples:
        >>> box = BoxGeometry(size=(1.0, 2.0, 3.0))
        >>> box.to_xml()
        <Element 'geometry' at 0x7f8b3c0b4c70>
    """

    size: tuple[float, float, float]

    def to_xml(self, root: Optional[ET.Element] = None) -> ET.Element:
        """
        Convert the box geometry to an XML element.

        Args:
            root: The root element to append the box geometry to.

        Returns:
            The XML element representing the box geometry.

        Examples:
            >>> box = BoxGeometry(size=(1.0, 2.0, 3.0))
            >>> box.to_xml()
            <Element 'geometry' at 0x7f8b3c0b4c70>
        """
        geometry = ET.Element("geometry") if root is None else ET.SubElement(root, "geometry")
        ET.SubElement(geometry, "box", size=" ".join(format_number(v) for v in self.size))
        return geometry

    def to_mjcf(self, root: ET.Element) -> None:
        """
        Convert the box geometry to an MJCF element.

        Args:
            root: The root element to append the box geometry to.

        Returns:
            The MJCF element representing the box geometry.

        Examples:
            >>> box = BoxGeometry(size=(1.0, 2.0, 3.0))
            >>> box.to_mjcf()
            <Element 'geom' at 0x7f8b3c0b4c70>
        """
        geom = root if root.tag == "geom" else ET.SubElement(root, "geom")
        geom.set("type", GeometryType.BOX)
        geom.set("size", " ".join(format_number(v) for v in self.size))

    @classmethod
    def from_xml(cls, element: ET.Element) -> "BoxGeometry":
        """
        Create a box geometry from an XML element.

        Args:
            element: The XML element to create the box geometry from.

        Returns:
            The box geometry created from the XML element.

        Examples:
            >>> element = ET.Element("geometry")
            >>> ET.SubElement(element, "box", size="1.0 2.0 3.0")
            >>> BoxGeometry.from_xml(element)
            BoxGeometry(size=(1.0, 2.0, 3.0))
        """
        size = tuple(float(v) for v in element.find("box").attrib["size"].split())
        return cls(size)

    @property
    def geometry_type(self) -> str:
        return GeometryType.BOX

from_xml(element) classmethod

Create a box geometry from an XML element.

Parameters:

Name Type Description Default
element Element

The XML element to create the box geometry from.

required

Returns:

Type Description
BoxGeometry

The box geometry created from the XML element.

Examples:

>>> element = ET.Element("geometry")
>>> ET.SubElement(element, "box", size="1.0 2.0 3.0")
>>> BoxGeometry.from_xml(element)
BoxGeometry(size=(1.0, 2.0, 3.0))
Source code in onshape_robotics_toolkit\models\geometry.py
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
@classmethod
def from_xml(cls, element: ET.Element) -> "BoxGeometry":
    """
    Create a box geometry from an XML element.

    Args:
        element: The XML element to create the box geometry from.

    Returns:
        The box geometry created from the XML element.

    Examples:
        >>> element = ET.Element("geometry")
        >>> ET.SubElement(element, "box", size="1.0 2.0 3.0")
        >>> BoxGeometry.from_xml(element)
        BoxGeometry(size=(1.0, 2.0, 3.0))
    """
    size = tuple(float(v) for v in element.find("box").attrib["size"].split())
    return cls(size)

to_mjcf(root)

Convert the box geometry to an MJCF element.

Parameters:

Name Type Description Default
root Element

The root element to append the box geometry to.

required

Returns:

Type Description
None

The MJCF element representing the box geometry.

Examples:

>>> box = BoxGeometry(size=(1.0, 2.0, 3.0))
>>> box.to_mjcf()
<Element 'geom' at 0x7f8b3c0b4c70>
Source code in onshape_robotics_toolkit\models\geometry.py
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
def to_mjcf(self, root: ET.Element) -> None:
    """
    Convert the box geometry to an MJCF element.

    Args:
        root: The root element to append the box geometry to.

    Returns:
        The MJCF element representing the box geometry.

    Examples:
        >>> box = BoxGeometry(size=(1.0, 2.0, 3.0))
        >>> box.to_mjcf()
        <Element 'geom' at 0x7f8b3c0b4c70>
    """
    geom = root if root.tag == "geom" else ET.SubElement(root, "geom")
    geom.set("type", GeometryType.BOX)
    geom.set("size", " ".join(format_number(v) for v in self.size))

to_xml(root=None)

Convert the box geometry to an XML element.

Parameters:

Name Type Description Default
root Optional[Element]

The root element to append the box geometry to.

None

Returns:

Type Description
Element

The XML element representing the box geometry.

Examples:

>>> box = BoxGeometry(size=(1.0, 2.0, 3.0))
>>> box.to_xml()
<Element 'geometry' at 0x7f8b3c0b4c70>
Source code in onshape_robotics_toolkit\models\geometry.py
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
def to_xml(self, root: Optional[ET.Element] = None) -> ET.Element:
    """
    Convert the box geometry to an XML element.

    Args:
        root: The root element to append the box geometry to.

    Returns:
        The XML element representing the box geometry.

    Examples:
        >>> box = BoxGeometry(size=(1.0, 2.0, 3.0))
        >>> box.to_xml()
        <Element 'geometry' at 0x7f8b3c0b4c70>
    """
    geometry = ET.Element("geometry") if root is None else ET.SubElement(root, "geometry")
    ET.SubElement(geometry, "box", size=" ".join(format_number(v) for v in self.size))
    return geometry

CylinderGeometry dataclass

Bases: BaseGeometry

Represents a cylinder geometry.

Attributes:

Name Type Description
radius float

The radius of the cylinder.

length float

The length of the cylinder.

Methods:

Name Description
to_xml

Converts the cylinder geometry to an XML element.

Examples:

>>> cylinder = CylinderGeometry(radius=1.0, length=2.0)
>>> cylinder.to_xml()
<Element 'geometry' at 0x7f8b3c0b4c70>
Source code in onshape_robotics_toolkit\models\geometry.py
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
@dataclass
class CylinderGeometry(BaseGeometry):
    """
    Represents a cylinder geometry.

    Attributes:
        radius (float): The radius of the cylinder.
        length (float): The length of the cylinder.

    Methods:
        to_xml: Converts the cylinder geometry to an XML element.

    Examples:
        >>> cylinder = CylinderGeometry(radius=1.0, length=2.0)
        >>> cylinder.to_xml()
        <Element 'geometry' at 0x7f8b3c0b4c70>
    """

    radius: float
    length: float

    def to_xml(self, root: Optional[ET.Element] = None) -> ET.Element:
        """
        Convert the cylinder geometry to an XML element.

        Args:
            root: The root element to append the cylinder geometry to.

        Returns:
            The XML element representing the cylinder geometry.

        Examples:
            >>> cylinder = CylinderGeometry(radius=1.0, length=2.0)
            >>> cylinder.to_xml()
            <Element 'geometry' at 0x7f8b3c0b4c70>
        """
        geometry = ET.Element("geometry") if root is None else ET.SubElement(root, "geometry")
        ET.SubElement(
            geometry,
            "cylinder",
            radius=format_number(self.radius),
            length=format_number(self.length),
        )
        return geometry

    def to_mjcf(self, root: ET.Element) -> None:
        """
        Convert the cylinder geometry to an MJCF element.

        Args:
            root: The root element to append the cylinder geometry to.

        Returns:
            The MJCF element representing the cylinder geometry.

        Examples:
            >>> cylinder = CylinderGeometry(radius=1.0, length=2.0)
            >>> cylinder.to_mjcf()
            <Element 'geom' at 0x7f8b3c0b4c70>
        """
        geom = root if root is not None and root.tag == "geom" else ET.SubElement(root, "geom")
        geom.set("type", GeometryType.CYLINDER)
        geom.set("size", f"{format_number(self.radius)} {format_number(self.length)}")

    @classmethod
    def from_xml(cls, element: ET.Element) -> "CylinderGeometry":
        """
        Create a cylinder geometry from an XML element.

        Args:
            element: The XML element to create the cylinder geometry from.

        Returns:
            The cylinder geometry created from the XML element.

        Examples:
            >>> element = ET.Element("geometry")
            >>> ET.SubElement(element, "cylinder", radius="1.0", length="2.0")
            >>> CylinderGeometry.from_xml(element)
            CylinderGeometry(radius=1.0, length=2.0)
        """
        radius = float(element.find("cylinder").attrib["radius"])
        length = float(element.find("cylinder").attrib["length"])
        return cls(radius, length)

    @property
    def geometry_type(self) -> str:
        return GeometryType.CYLINDER

from_xml(element) classmethod

Create a cylinder geometry from an XML element.

Parameters:

Name Type Description Default
element Element

The XML element to create the cylinder geometry from.

required

Returns:

Type Description
CylinderGeometry

The cylinder geometry created from the XML element.

Examples:

>>> element = ET.Element("geometry")
>>> ET.SubElement(element, "cylinder", radius="1.0", length="2.0")
>>> CylinderGeometry.from_xml(element)
CylinderGeometry(radius=1.0, length=2.0)
Source code in onshape_robotics_toolkit\models\geometry.py
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
@classmethod
def from_xml(cls, element: ET.Element) -> "CylinderGeometry":
    """
    Create a cylinder geometry from an XML element.

    Args:
        element: The XML element to create the cylinder geometry from.

    Returns:
        The cylinder geometry created from the XML element.

    Examples:
        >>> element = ET.Element("geometry")
        >>> ET.SubElement(element, "cylinder", radius="1.0", length="2.0")
        >>> CylinderGeometry.from_xml(element)
        CylinderGeometry(radius=1.0, length=2.0)
    """
    radius = float(element.find("cylinder").attrib["radius"])
    length = float(element.find("cylinder").attrib["length"])
    return cls(radius, length)

to_mjcf(root)

Convert the cylinder geometry to an MJCF element.

Parameters:

Name Type Description Default
root Element

The root element to append the cylinder geometry to.

required

Returns:

Type Description
None

The MJCF element representing the cylinder geometry.

Examples:

>>> cylinder = CylinderGeometry(radius=1.0, length=2.0)
>>> cylinder.to_mjcf()
<Element 'geom' at 0x7f8b3c0b4c70>
Source code in onshape_robotics_toolkit\models\geometry.py
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
def to_mjcf(self, root: ET.Element) -> None:
    """
    Convert the cylinder geometry to an MJCF element.

    Args:
        root: The root element to append the cylinder geometry to.

    Returns:
        The MJCF element representing the cylinder geometry.

    Examples:
        >>> cylinder = CylinderGeometry(radius=1.0, length=2.0)
        >>> cylinder.to_mjcf()
        <Element 'geom' at 0x7f8b3c0b4c70>
    """
    geom = root if root is not None and root.tag == "geom" else ET.SubElement(root, "geom")
    geom.set("type", GeometryType.CYLINDER)
    geom.set("size", f"{format_number(self.radius)} {format_number(self.length)}")

to_xml(root=None)

Convert the cylinder geometry to an XML element.

Parameters:

Name Type Description Default
root Optional[Element]

The root element to append the cylinder geometry to.

None

Returns:

Type Description
Element

The XML element representing the cylinder geometry.

Examples:

>>> cylinder = CylinderGeometry(radius=1.0, length=2.0)
>>> cylinder.to_xml()
<Element 'geometry' at 0x7f8b3c0b4c70>
Source code in onshape_robotics_toolkit\models\geometry.py
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
def to_xml(self, root: Optional[ET.Element] = None) -> ET.Element:
    """
    Convert the cylinder geometry to an XML element.

    Args:
        root: The root element to append the cylinder geometry to.

    Returns:
        The XML element representing the cylinder geometry.

    Examples:
        >>> cylinder = CylinderGeometry(radius=1.0, length=2.0)
        >>> cylinder.to_xml()
        <Element 'geometry' at 0x7f8b3c0b4c70>
    """
    geometry = ET.Element("geometry") if root is None else ET.SubElement(root, "geometry")
    ET.SubElement(
        geometry,
        "cylinder",
        radius=format_number(self.radius),
        length=format_number(self.length),
    )
    return geometry

GeometryType

Bases: str, Enum

Enumerates the possible geometry types in Onshape.

Attributes:

Name Type Description
BOX str

Box geometry.

CYLINDER str

Cylinder geometry.

SPHERE str

Sphere geometry.

MESH str

Mesh geometry.

Examples:

>>> GeometryType.BOX
'BOX'
>>> GeometryType.CYLINDER
'CYLINDER'
Source code in onshape_robotics_toolkit\models\geometry.py
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
class GeometryType(str, Enum):
    """
    Enumerates the possible geometry types in Onshape.

    Attributes:
        BOX (str): Box geometry.
        CYLINDER (str): Cylinder geometry.
        SPHERE (str): Sphere geometry.
        MESH (str): Mesh geometry.

    Examples:
        >>> GeometryType.BOX
        'BOX'
        >>> GeometryType.CYLINDER
        'CYLINDER'
    """

    BOX = "box"
    CYLINDER = "cylinder"
    SPHERE = "sphere"
    MESH = "mesh"

MeshGeometry dataclass

Bases: BaseGeometry

Represents a mesh geometry.

Attributes:

Name Type Description
filename str

The filename of the mesh.

Methods:

Name Description
to_xml

Converts the mesh geometry to an XML element.

Examples:

>>> mesh = MeshGeometry(filename="mesh.stl")
>>> mesh.to_xml()
<Element 'geometry' at 0x7f8b3c0b4c70>
Source code in onshape_robotics_toolkit\models\geometry.py
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
@dataclass
class MeshGeometry(BaseGeometry):
    """
    Represents a mesh geometry.

    Attributes:
        filename (str): The filename of the mesh.

    Methods:
        to_xml: Converts the mesh geometry to an XML element.

    Examples:
        >>> mesh = MeshGeometry(filename="mesh.stl")
        >>> mesh.to_xml()
        <Element 'geometry' at 0x7f8b3c0b4c70>
    """

    filename: str

    def to_xml(self, root: Optional[ET.Element] = None) -> ET.Element:
        """
        Convert the mesh geometry to an XML element.

        Args:
            root: The root element to append the mesh geometry to.

        Returns:
            The XML element representing the mesh geometry.

        Examples:
            >>> mesh = MeshGeometry(filename="mesh.stl")
            >>> mesh.to_xml()
            <Element 'geometry' at 0x7f8b3c0b4c70>
        """
        geometry = ET.Element("geometry") if root is None else ET.SubElement(root, "geometry")
        ET.SubElement(geometry, "mesh", filename=self.filename)
        return geometry

    def to_mjcf(self, root: ET.Element) -> None:
        """
        Convert the mesh geometry to an MJCF element.

        Args:
            root: The root element to append the mesh geometry to.

        Returns:
            The MJCF element representing the mesh geometry.

        Examples:
            >>> mesh = MeshGeometry(filename="mesh.stl")
            >>> mesh.to_mjcf()
            <Element 'geom' at 0x7f8b3c0b4c70>
        """
        geom = root if root is not None and root.tag == "geom" else ET.SubElement(root, "geom")
        geom.set("type", GeometryType.MESH)
        geom.set("mesh", self.mesh_name)

    @classmethod
    def from_xml(cls, element: ET.Element) -> "MeshGeometry":
        """
        Create a mesh geometry from an XML element.

        Args:
            element: The XML element to create the mesh geometry from.

        Returns:
            The mesh geometry created from the XML element.

        Examples:
            >>> element = ET.Element("geometry")
            >>> ET.SubElement(element, "mesh", filename="mesh.stl")
            >>> MeshGeometry.from_xml(element)
            MeshGeometry(filename="mesh.stl")
        """
        filename = element.find("mesh").attrib["filename"]
        return cls(filename)

    def __post_init__(self) -> None:
        self.filename = xml_escape(self.filename)

    @property
    def geometry_type(self) -> str:
        return GeometryType.MESH

    @property
    def mesh_name(self) -> str:
        file_name_w_ext = os.path.basename(self.filename)
        return os.path.splitext(file_name_w_ext)[0]

from_xml(element) classmethod

Create a mesh geometry from an XML element.

Parameters:

Name Type Description Default
element Element

The XML element to create the mesh geometry from.

required

Returns:

Type Description
MeshGeometry

The mesh geometry created from the XML element.

Examples:

>>> element = ET.Element("geometry")
>>> ET.SubElement(element, "mesh", filename="mesh.stl")
>>> MeshGeometry.from_xml(element)
MeshGeometry(filename="mesh.stl")
Source code in onshape_robotics_toolkit\models\geometry.py
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
@classmethod
def from_xml(cls, element: ET.Element) -> "MeshGeometry":
    """
    Create a mesh geometry from an XML element.

    Args:
        element: The XML element to create the mesh geometry from.

    Returns:
        The mesh geometry created from the XML element.

    Examples:
        >>> element = ET.Element("geometry")
        >>> ET.SubElement(element, "mesh", filename="mesh.stl")
        >>> MeshGeometry.from_xml(element)
        MeshGeometry(filename="mesh.stl")
    """
    filename = element.find("mesh").attrib["filename"]
    return cls(filename)

to_mjcf(root)

Convert the mesh geometry to an MJCF element.

Parameters:

Name Type Description Default
root Element

The root element to append the mesh geometry to.

required

Returns:

Type Description
None

The MJCF element representing the mesh geometry.

Examples:

>>> mesh = MeshGeometry(filename="mesh.stl")
>>> mesh.to_mjcf()
<Element 'geom' at 0x7f8b3c0b4c70>
Source code in onshape_robotics_toolkit\models\geometry.py
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
def to_mjcf(self, root: ET.Element) -> None:
    """
    Convert the mesh geometry to an MJCF element.

    Args:
        root: The root element to append the mesh geometry to.

    Returns:
        The MJCF element representing the mesh geometry.

    Examples:
        >>> mesh = MeshGeometry(filename="mesh.stl")
        >>> mesh.to_mjcf()
        <Element 'geom' at 0x7f8b3c0b4c70>
    """
    geom = root if root is not None and root.tag == "geom" else ET.SubElement(root, "geom")
    geom.set("type", GeometryType.MESH)
    geom.set("mesh", self.mesh_name)

to_xml(root=None)

Convert the mesh geometry to an XML element.

Parameters:

Name Type Description Default
root Optional[Element]

The root element to append the mesh geometry to.

None

Returns:

Type Description
Element

The XML element representing the mesh geometry.

Examples:

>>> mesh = MeshGeometry(filename="mesh.stl")
>>> mesh.to_xml()
<Element 'geometry' at 0x7f8b3c0b4c70>
Source code in onshape_robotics_toolkit\models\geometry.py
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
def to_xml(self, root: Optional[ET.Element] = None) -> ET.Element:
    """
    Convert the mesh geometry to an XML element.

    Args:
        root: The root element to append the mesh geometry to.

    Returns:
        The XML element representing the mesh geometry.

    Examples:
        >>> mesh = MeshGeometry(filename="mesh.stl")
        >>> mesh.to_xml()
        <Element 'geometry' at 0x7f8b3c0b4c70>
    """
    geometry = ET.Element("geometry") if root is None else ET.SubElement(root, "geometry")
    ET.SubElement(geometry, "mesh", filename=self.filename)
    return geometry

SphereGeometry dataclass

Bases: BaseGeometry

Represents a sphere geometry.

Attributes:

Name Type Description
radius float

The radius of the sphere.

Methods:

Name Description
to_xml

Converts the sphere geometry to an XML element.

Examples:

>>> sphere = SphereGeometry(radius=1.0)
>>> sphere.to_xml()
<Element 'geometry' at 0x7f8b3c0b4c70>
Source code in onshape_robotics_toolkit\models\geometry.py
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
@dataclass
class SphereGeometry(BaseGeometry):
    """
    Represents a sphere geometry.

    Attributes:
        radius (float): The radius of the sphere.

    Methods:
        to_xml: Converts the sphere geometry to an XML element.

    Examples:
        >>> sphere = SphereGeometry(radius=1.0)
        >>> sphere.to_xml()
        <Element 'geometry' at 0x7f8b3c0b4c70>
    """

    radius: float

    def to_xml(self, root: Optional[ET.Element] = None) -> ET.Element:
        """
        Convert the sphere geometry to an XML element.

        Args:
            root: The root element to append the sphere geometry to.

        Returns:
            The XML element representing the sphere geometry.

        Examples:
            >>> sphere = SphereGeometry(radius=1.0)
            >>> sphere.to_xml()
            <Element 'geometry' at 0x7f8b3c0b4c70>
        """
        geometry = ET.Element("geometry") if root is None else ET.SubElement(root, "geometry")
        ET.SubElement(geometry, "sphere", radius=format_number(self.radius))
        return geometry

    def to_mjcf(self, root: ET.Element) -> None:
        """
        Convert the sphere geometry to an MJCF element.

        Args:
            root: The root element to append the sphere geometry to.

        Returns:
            The MJCF element representing the sphere geometry.

        Examples:
            >>> sphere = SphereGeometry(radius=1.0)
            >>> sphere.to_mjcf()
            <Element 'geom' at 0x7f8b3c0b4c70>
        """
        geom = root if root is not None and root.tag == "geom" else ET.SubElement(root, "geom")
        geom.set("type", GeometryType.SPHERE)
        geom.set("size", format_number(self.radius))

    @classmethod
    def from_xml(cls, element: ET.Element) -> "SphereGeometry":
        """
        Create a sphere geometry from an XML element.

        Args:
            element: The XML element to create the sphere geometry from.

        Returns:
            The sphere geometry created from the XML element.

        Examples:
            >>> element = ET.Element("geometry")
            >>> ET.SubElement(element, "sphere", radius="1.0")
            >>> SphereGeometry.from_xml(element)
            SphereGeometry(radius=1.0)
        """
        radius = float(element.find("sphere").attrib["radius"])
        return cls(radius)

    @property
    def geometry_type(self) -> str:
        return GeometryType.SPHERE

from_xml(element) classmethod

Create a sphere geometry from an XML element.

Parameters:

Name Type Description Default
element Element

The XML element to create the sphere geometry from.

required

Returns:

Type Description
SphereGeometry

The sphere geometry created from the XML element.

Examples:

>>> element = ET.Element("geometry")
>>> ET.SubElement(element, "sphere", radius="1.0")
>>> SphereGeometry.from_xml(element)
SphereGeometry(radius=1.0)
Source code in onshape_robotics_toolkit\models\geometry.py
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
@classmethod
def from_xml(cls, element: ET.Element) -> "SphereGeometry":
    """
    Create a sphere geometry from an XML element.

    Args:
        element: The XML element to create the sphere geometry from.

    Returns:
        The sphere geometry created from the XML element.

    Examples:
        >>> element = ET.Element("geometry")
        >>> ET.SubElement(element, "sphere", radius="1.0")
        >>> SphereGeometry.from_xml(element)
        SphereGeometry(radius=1.0)
    """
    radius = float(element.find("sphere").attrib["radius"])
    return cls(radius)

to_mjcf(root)

Convert the sphere geometry to an MJCF element.

Parameters:

Name Type Description Default
root Element

The root element to append the sphere geometry to.

required

Returns:

Type Description
None

The MJCF element representing the sphere geometry.

Examples:

>>> sphere = SphereGeometry(radius=1.0)
>>> sphere.to_mjcf()
<Element 'geom' at 0x7f8b3c0b4c70>
Source code in onshape_robotics_toolkit\models\geometry.py
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
def to_mjcf(self, root: ET.Element) -> None:
    """
    Convert the sphere geometry to an MJCF element.

    Args:
        root: The root element to append the sphere geometry to.

    Returns:
        The MJCF element representing the sphere geometry.

    Examples:
        >>> sphere = SphereGeometry(radius=1.0)
        >>> sphere.to_mjcf()
        <Element 'geom' at 0x7f8b3c0b4c70>
    """
    geom = root if root is not None and root.tag == "geom" else ET.SubElement(root, "geom")
    geom.set("type", GeometryType.SPHERE)
    geom.set("size", format_number(self.radius))

to_xml(root=None)

Convert the sphere geometry to an XML element.

Parameters:

Name Type Description Default
root Optional[Element]

The root element to append the sphere geometry to.

None

Returns:

Type Description
Element

The XML element representing the sphere geometry.

Examples:

>>> sphere = SphereGeometry(radius=1.0)
>>> sphere.to_xml()
<Element 'geometry' at 0x7f8b3c0b4c70>
Source code in onshape_robotics_toolkit\models\geometry.py
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
def to_xml(self, root: Optional[ET.Element] = None) -> ET.Element:
    """
    Convert the sphere geometry to an XML element.

    Args:
        root: The root element to append the sphere geometry to.

    Returns:
        The XML element representing the sphere geometry.

    Examples:
        >>> sphere = SphereGeometry(radius=1.0)
        >>> sphere.to_xml()
        <Element 'geometry' at 0x7f8b3c0b4c70>
    """
    geometry = ET.Element("geometry") if root is None else ET.SubElement(root, "geometry")
    ET.SubElement(geometry, "sphere", radius=format_number(self.radius))
    return geometry