| 37 | |
| 38 | |
| 39 | PyObject* TriQuaternion::Repr( |
| 40 | bool* handled ) |
| 41 | { |
| 42 | *handled = true; |
| 43 | char buf[120]; |
| 44 | sprintf_s( buf, "(%f,%f,%f,%f)", x, y, z, w ); |
| 45 | return ToPython( buf ); |
| 46 | } |
| 47 | |
| 48 | |
| 49 | ///////////////////////////////////////////////////////////////////////////////////////// |
nothing calls this directly
no test coverage detected