| 18 | |
| 19 | |
| 20 | Matrix3D::Matrix3D(float n00, float n01, float n02, float n10, float n11, float n12, float n20, float n21, float n22) : Mat3D<TypeMatrix3D>(n00, n01, n02, n10, n11, n12, n20, n21, n22) |
| 21 | { |
| 22 | } |
| 23 | |
| 24 | Matrix3D::Matrix3D(const Vector3D& a, const Vector3D& b, const Vector3D& c) |
| 25 | { |
nothing calls this directly
no outgoing calls
no test coverage detected