libcruft-util/matrix.hpp

45 lines
1.3 KiB
C++
Raw Normal View History

/****************************************************************************
__ .__ .__ .__ .___
___________ ___.__. _______/ |______ | | | | |__| ______ ____ __| _/
_/ ___\_ __ < | |/ ___/\ __\__ \ | | | | | |/ ___// __ \ / __ |
\ \___| | \/\___ |\___ \ | | / __ \| |_| |_| |\___ \\ ___// /_/ |
\___ >__| / ____/____ > |__| (____ /____/____/__/____ >\___ >____ |
\/ \/ \/ \/ \/ \/ \/
Copyright:
Danny Robson, 2011
*****************************************************************************/
2011-05-23 17:18:52 +10:00
#ifndef __UTIL_MATRIX_HPP
#define __UTIL_MATRIX_HPP
#include "point.hpp"
2011-05-23 17:18:52 +10:00
#include <iostream>
namespace util {
struct matrix {
double values[4][4];
2011-05-23 17:18:52 +10:00
void scale (double x, double y, double z);
void translate (double x, double y, double z);
2011-05-23 17:18:52 +10:00
matrix inverse (void) const;
matrix& invert (void);
2011-05-23 17:18:52 +10:00
matrix operator* (const matrix&) const;
2011-05-23 17:18:52 +10:00
point<3> to_local (const point<3> &p) const;
point<3> to_global (const point<3> &p) const;
2011-05-23 17:18:52 +10:00
bool is_affine (void) const;
2011-05-23 17:18:52 +10:00
static const matrix IDENTITY;
static const matrix ZEROES;
2011-05-23 17:18:52 +10:00
};
}
std::ostream& operator<< (std::ostream&, const util::matrix&);
2011-05-23 17:18:52 +10:00
#endif