Return unit vector with optional clipping.
(self, epsilon: float = 1e-6)
| 96 | return self.dot(self) |
| 97 | |
| 98 | def normalized(self, epsilon: float = 1e-6) -> Vec3Array: |
| 99 | """Return unit vector with optional clipping.""" |
| 100 | return self / self.norm(epsilon) |
| 101 | |
| 102 | @classmethod |
| 103 | def zeros(cls, shape, dtype=jnp.float32): |
no test coverage detected