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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|