2011-06-13 14:02:52 +00:00
|
|
|
|
2011-07-28 14:26:00 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
2011-06-13 14:02:52 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2011-07-28 14:26:00 +00:00
|
|
|
|
2011-06-13 14:02:52 +00:00
|
|
|
#ifndef SkMatrix44_DEFINED
|
|
|
|
#define SkMatrix44_DEFINED
|
|
|
|
|
|
|
|
#include "SkMatrix.h"
|
|
|
|
#include "SkScalar.h"
|
|
|
|
|
|
|
|
#ifdef SK_MSCALAR_IS_DOUBLE
|
|
|
|
typedef double SkMScalar;
|
|
|
|
static inline double SkFloatToMScalar(float x) {
|
|
|
|
return static_cast<double>(x);
|
|
|
|
}
|
|
|
|
static inline float SkMScalarToFloat(double x) {
|
|
|
|
return static_cast<float>(x);
|
|
|
|
}
|
|
|
|
static inline double SkDoubleToMScalar(double x) {
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
static inline double SkMScalarToDouble(double x) {
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
static const SkMScalar SK_MScalarPI = 3.141592653589793;
|
2012-11-13 20:12:00 +00:00
|
|
|
#elif defined SK_MSCALAR_IS_FLOAT
|
2011-06-13 14:02:52 +00:00
|
|
|
typedef float SkMScalar;
|
|
|
|
static inline float SkFloatToMScalar(float x) {
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
static inline float SkMScalarToFloat(float x) {
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
static inline float SkDoubleToMScalar(double x) {
|
|
|
|
return static_cast<float>(x);
|
|
|
|
}
|
|
|
|
static inline double SkMScalarToDouble(float x) {
|
|
|
|
return static_cast<double>(x);
|
|
|
|
}
|
|
|
|
static const SkMScalar SK_MScalarPI = 3.14159265f;
|
|
|
|
#endif
|
|
|
|
|
2012-11-09 21:28:55 +00:00
|
|
|
#define SkMScalarToScalar SkMScalarToFloat
|
|
|
|
#define SkScalarToMScalar SkFloatToMScalar
|
2011-10-27 21:47:03 +00:00
|
|
|
|
2011-06-13 14:02:52 +00:00
|
|
|
static const SkMScalar SK_MScalar1 = 1;
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
struct SkVector4 {
|
|
|
|
SkScalar fData[4];
|
|
|
|
|
|
|
|
SkVector4() {
|
|
|
|
this->set(0, 0, 0, 1);
|
|
|
|
}
|
|
|
|
SkVector4(const SkVector4& src) {
|
|
|
|
memcpy(fData, src.fData, sizeof(fData));
|
|
|
|
}
|
|
|
|
SkVector4(SkScalar x, SkScalar y, SkScalar z, SkScalar w = SK_Scalar1) {
|
|
|
|
fData[0] = x;
|
|
|
|
fData[1] = y;
|
|
|
|
fData[2] = z;
|
|
|
|
fData[3] = w;
|
|
|
|
}
|
|
|
|
|
|
|
|
SkVector4& operator=(const SkVector4& src) {
|
|
|
|
memcpy(fData, src.fData, sizeof(fData));
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(const SkVector4& v) {
|
|
|
|
return fData[0] == v.fData[0] && fData[1] == v.fData[1] &&
|
|
|
|
fData[2] == v.fData[2] && fData[3] == v.fData[3];
|
|
|
|
}
|
|
|
|
bool operator!=(const SkVector4& v) {
|
|
|
|
return !(*this == v);
|
|
|
|
}
|
|
|
|
bool equals(SkScalar x, SkScalar y, SkScalar z, SkScalar w = SK_Scalar1) {
|
|
|
|
return fData[0] == x && fData[1] == y &&
|
|
|
|
fData[2] == z && fData[3] == w;
|
|
|
|
}
|
|
|
|
|
|
|
|
void set(SkScalar x, SkScalar y, SkScalar z, SkScalar w = SK_Scalar1) {
|
|
|
|
fData[0] = x;
|
|
|
|
fData[1] = y;
|
|
|
|
fData[2] = z;
|
|
|
|
fData[3] = w;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-07-05 19:12:59 +00:00
|
|
|
class SK_API SkMatrix44 {
|
2011-06-13 14:02:52 +00:00
|
|
|
public:
|
|
|
|
SkMatrix44();
|
|
|
|
SkMatrix44(const SkMatrix44&);
|
|
|
|
SkMatrix44(const SkMatrix44& a, const SkMatrix44& b);
|
|
|
|
|
|
|
|
SkMatrix44& operator=(const SkMatrix44& src) {
|
|
|
|
memcpy(this, &src, sizeof(*this));
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2012-11-27 13:13:22 +00:00
|
|
|
bool operator==(const SkMatrix44& other) const;
|
2011-06-13 14:02:52 +00:00
|
|
|
bool operator!=(const SkMatrix44& other) const {
|
2012-11-27 13:13:22 +00:00
|
|
|
return !(other == *this);
|
2011-06-13 14:02:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SkMatrix44(const SkMatrix&);
|
|
|
|
SkMatrix44& operator=(const SkMatrix& src);
|
|
|
|
operator SkMatrix() const;
|
|
|
|
|
2012-11-27 13:13:22 +00:00
|
|
|
SkMScalar get(int row, int col) const {
|
|
|
|
SkASSERT((unsigned)row <= 3);
|
|
|
|
SkASSERT((unsigned)col <= 3);
|
|
|
|
return fMat[col][row];
|
|
|
|
}
|
2011-06-13 14:02:52 +00:00
|
|
|
|
2012-11-27 13:13:22 +00:00
|
|
|
void set(int row, int col, SkMScalar value) {
|
|
|
|
SkASSERT((unsigned)row <= 3);
|
|
|
|
SkASSERT((unsigned)col <= 3);
|
|
|
|
fMat[col][row] = value;
|
2012-11-29 21:17:16 +00:00
|
|
|
fIdentity = false;
|
2012-11-27 13:13:22 +00:00
|
|
|
}
|
2012-11-28 02:02:11 +00:00
|
|
|
|
2012-11-14 21:33:55 +00:00
|
|
|
double getDouble(int row, int col) const {
|
|
|
|
return SkMScalarToDouble(this->get(row, col));
|
|
|
|
}
|
|
|
|
void setDouble(int row, int col, double value) {
|
|
|
|
this->set(row, col, SkDoubleToMScalar(value));
|
|
|
|
}
|
|
|
|
|
2012-11-19 21:02:06 +00:00
|
|
|
/** These methods allow one to efficiently read matrix entries into an
|
|
|
|
* array. The given array must have room for exactly 16 entries. Whenever
|
|
|
|
* possible, they will try to use memcpy rather than an entry-by-entry
|
|
|
|
* copy.
|
|
|
|
*/
|
2011-06-13 14:46:52 +00:00
|
|
|
void asColMajorf(float[]) const;
|
|
|
|
void asColMajord(double[]) const;
|
|
|
|
void asRowMajorf(float[]) const;
|
|
|
|
void asRowMajord(double[]) const;
|
|
|
|
|
2012-11-19 21:02:06 +00:00
|
|
|
/** These methods allow one to efficiently set all matrix entries from an
|
|
|
|
* array. The given array must have room for exactly 16 entries. Whenever
|
|
|
|
* possible, they will try to use memcpy rather than an entry-by-entry
|
|
|
|
* copy.
|
|
|
|
*/
|
|
|
|
void setColMajorf(const float[]);
|
|
|
|
void setColMajord(const double[]);
|
|
|
|
void setRowMajorf(const float[]);
|
|
|
|
void setRowMajord(const double[]);
|
|
|
|
|
2011-06-13 14:02:52 +00:00
|
|
|
bool isIdentity() const;
|
|
|
|
void setIdentity();
|
|
|
|
void reset() { this->setIdentity();}
|
|
|
|
|
|
|
|
void set3x3(SkMScalar m00, SkMScalar m01, SkMScalar m02,
|
|
|
|
SkMScalar m10, SkMScalar m11, SkMScalar m12,
|
|
|
|
SkMScalar m20, SkMScalar m21, SkMScalar m22);
|
|
|
|
|
|
|
|
void setTranslate(SkMScalar dx, SkMScalar dy, SkMScalar dz);
|
|
|
|
void preTranslate(SkMScalar dx, SkMScalar dy, SkMScalar dz);
|
|
|
|
void postTranslate(SkMScalar dx, SkMScalar dy, SkMScalar dz);
|
|
|
|
|
|
|
|
void setScale(SkMScalar sx, SkMScalar sy, SkMScalar sz);
|
|
|
|
void preScale(SkMScalar sx, SkMScalar sy, SkMScalar sz);
|
|
|
|
void postScale(SkMScalar sx, SkMScalar sy, SkMScalar sz);
|
|
|
|
|
|
|
|
void setScale(SkMScalar scale) {
|
|
|
|
this->setScale(scale, scale, scale);
|
|
|
|
}
|
|
|
|
void preScale(SkMScalar scale) {
|
|
|
|
this->preScale(scale, scale, scale);
|
|
|
|
}
|
|
|
|
void postScale(SkMScalar scale) {
|
|
|
|
this->postScale(scale, scale, scale);
|
|
|
|
}
|
|
|
|
|
|
|
|
void setRotateDegreesAbout(SkMScalar x, SkMScalar y, SkMScalar z,
|
|
|
|
SkMScalar degrees) {
|
|
|
|
this->setRotateAbout(x, y, z, degrees * SK_MScalarPI / 180);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Rotate about the vector [x,y,z]. If that vector is not unit-length,
|
|
|
|
it will be automatically resized.
|
|
|
|
*/
|
|
|
|
void setRotateAbout(SkMScalar x, SkMScalar y, SkMScalar z,
|
|
|
|
SkMScalar radians);
|
|
|
|
/** Rotate about the vector [x,y,z]. Does not check the length of the
|
|
|
|
vector, assuming it is unit-length.
|
|
|
|
*/
|
|
|
|
void setRotateAboutUnit(SkMScalar x, SkMScalar y, SkMScalar z,
|
|
|
|
SkMScalar radians);
|
|
|
|
|
|
|
|
void setConcat(const SkMatrix44& a, const SkMatrix44& b);
|
|
|
|
void preConcat(const SkMatrix44& m) {
|
|
|
|
this->setConcat(*this, m);
|
|
|
|
}
|
|
|
|
void postConcat(const SkMatrix44& m) {
|
|
|
|
this->setConcat(m, *this);
|
|
|
|
}
|
|
|
|
|
|
|
|
friend SkMatrix44 operator*(const SkMatrix44& a, const SkMatrix44& b) {
|
|
|
|
return SkMatrix44(a, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** If this is invertible, return that in inverse and return true. If it is
|
|
|
|
not invertible, return false and ignore the inverse parameter.
|
|
|
|
*/
|
|
|
|
bool invert(SkMatrix44* inverse) const;
|
|
|
|
|
2012-11-14 21:33:55 +00:00
|
|
|
/** Transpose this matrix in place. */
|
|
|
|
void transpose();
|
|
|
|
|
2011-06-13 14:02:52 +00:00
|
|
|
/** Apply the matrix to the src vector, returning the new vector in dst.
|
|
|
|
It is legal for src and dst to point to the same memory.
|
|
|
|
*/
|
2012-11-09 21:39:48 +00:00
|
|
|
void mapScalars(const SkScalar src[4], SkScalar dst[4]) const;
|
|
|
|
void mapScalars(SkScalar vec[4]) const {
|
|
|
|
this->mapScalars(vec, vec);
|
|
|
|
}
|
|
|
|
|
|
|
|
// DEPRECATED: call mapScalars()
|
|
|
|
void map(const SkScalar src[4], SkScalar dst[4]) const {
|
|
|
|
this->mapScalars(src, dst);
|
|
|
|
}
|
|
|
|
// DEPRECATED: call mapScalars()
|
2011-06-13 14:02:52 +00:00
|
|
|
void map(SkScalar vec[4]) const {
|
2012-11-09 21:39:48 +00:00
|
|
|
this->mapScalars(vec, vec);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef SK_MSCALAR_IS_DOUBLE
|
2012-11-12 20:43:59 +00:00
|
|
|
void mapMScalars(const SkMScalar src[4], SkMScalar dst[4]) const;
|
2012-11-13 20:12:00 +00:00
|
|
|
#elif defined SK_MSCALAR_IS_FLOAT
|
2012-11-12 20:43:59 +00:00
|
|
|
void mapMScalars(const SkMScalar src[4], SkMScalar dst[4]) const {
|
2012-11-09 21:39:48 +00:00
|
|
|
this->mapScalars(src, dst);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
void mapMScalars(SkMScalar vec[4]) const {
|
|
|
|
this->mapMScalars(vec, vec);
|
2011-06-13 14:02:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
friend SkVector4 operator*(const SkMatrix44& m, const SkVector4& src) {
|
|
|
|
SkVector4 dst;
|
|
|
|
m.map(src.fData, dst.fData);
|
|
|
|
return dst;
|
|
|
|
}
|
|
|
|
|
|
|
|
void dump() const;
|
|
|
|
|
2012-11-13 15:08:22 +00:00
|
|
|
double determinant() const;
|
|
|
|
|
2011-06-13 14:02:52 +00:00
|
|
|
private:
|
|
|
|
/* Stored in the same order as opengl:
|
|
|
|
[3][0] = tx
|
|
|
|
[3][1] = ty
|
|
|
|
[3][2] = tz
|
|
|
|
*/
|
|
|
|
SkMScalar fMat[4][4];
|
2012-11-29 21:17:16 +00:00
|
|
|
|
|
|
|
bool fIdentity;
|
2011-06-13 14:02:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|