| 66 | ///////////////////////////////////////////////////////////////////////////////////////// |
| 67 | |
| 68 | void TriQuaternion::SetXYZW( |
| 69 | float _x, |
| 70 | float _y, |
| 71 | float _z, |
| 72 | float _w ) |
| 73 | { |
| 74 | x = _x; |
| 75 | y = _y; |
| 76 | z = _z; |
| 77 | w = _w; |
| 78 | } |
| 79 | |
| 80 | |
| 81 | void TriQuaternion::SetQuaternion( |
no outgoing calls
no test coverage detected