Actual up vector (orthogonal to forward and right).
(self)
| 56 | |
| 57 | @property |
| 58 | def camera_up(self) -> np.ndarray: |
| 59 | """Actual up vector (orthogonal to forward and right).""" |
| 60 | return _normalize(np.cross(self.right, self.forward)) |
| 61 | |
| 62 | @property |
| 63 | def distance(self) -> float: |
nothing calls this directly
no test coverage detected