MCPcopy Create free account
hub / github.com/Simple-Robotics/Simple / __init__

Method __init__

sandbox/viz_utils.py:349–360  ·  view source on GitHub ↗
(
        self,
        width: float,
        height: float,
        widthSegments: float = 1,
        heightSegments: float = 1,
    )

Source from the content-addressed store, hash-verified

347 """A plane of the given width and height."""
348
349 def __init__(
350 self,
351 width: float,
352 height: float,
353 widthSegments: float = 1,
354 heightSegments: float = 1,
355 ):
356 super().__init__()
357 self.width = width
358 self.height = height
359 self.widthSegments = widthSegments
360 self.heightSegments = heightSegments
361
362 def lower(self, object_data: Any) -> MsgType:
363 return {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected