Ensure the position is externally always treated as (3,), not (1, 3).
(self)
| 30 | |
| 31 | @property |
| 32 | def position(self): |
| 33 | """Ensure the position is externally always treated as (3,), not (1, 3).""" |
| 34 | return self._position.reshape((3,)) |
| 35 | |
| 36 | @position.setter |
| 37 | def position(self, value): |
nothing calls this directly
no outgoing calls
no test coverage detected