| 482 | } |
| 483 | |
| 484 | Py::Object RotationPy::getRawAxis() const |
| 485 | { |
| 486 | Vector3d axis; |
| 487 | double angle {}; |
| 488 | this->getRotationPtr()->getRawValue(axis, angle); |
| 489 | return Py::Vector(axis); // NOLINT |
| 490 | } |
| 491 | |
| 492 | Py::Object RotationPy::getAxis() const |
| 493 | { |
nothing calls this directly
no test coverage detected