2011-07-28 14:26:00 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
/*
|
2011-07-28 14:26:00 +00:00
|
|
|
* Copyright 2006 The Android Open Source Project
|
2008-12-17 15:59:43 +00:00
|
|
|
*
|
2011-07-28 14:26:00 +00:00
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
2008-12-17 15:59:43 +00:00
|
|
|
*/
|
|
|
|
|
2011-07-28 14:26:00 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
#ifndef SkMatrix_DEFINED
|
|
|
|
#define SkMatrix_DEFINED
|
|
|
|
|
2014-07-09 02:37:47 +00:00
|
|
|
#include "SkDynamicAnnotations.h"
|
2008-12-17 15:59:43 +00:00
|
|
|
#include "SkRect.h"
|
|
|
|
|
|
|
|
class SkString;
|
|
|
|
|
2013-12-17 16:44:46 +00:00
|
|
|
// TODO: can we remove these 3 (need to check chrome/android)
|
|
|
|
typedef SkScalar SkPersp;
|
|
|
|
#define SkScalarToPersp(x) (x)
|
|
|
|
#define SkPerspToScalar(x) (x)
|
2011-10-07 21:55:56 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
/** \class SkMatrix
|
|
|
|
|
|
|
|
The SkMatrix class holds a 3x3 matrix for transforming coordinates.
|
|
|
|
SkMatrix does not have a constructor, so it must be explicitly initialized
|
|
|
|
using either reset() - to construct an identity matrix, or one of the set
|
|
|
|
functions (e.g. setTranslate, setRotate, etc.).
|
|
|
|
*/
|
2011-03-15 21:27:08 +00:00
|
|
|
class SK_API SkMatrix {
|
2008-12-17 15:59:43 +00:00
|
|
|
public:
|
|
|
|
/** Enum of bit fields for the mask return by getType().
|
|
|
|
Use this to identify the complexity of the matrix.
|
|
|
|
*/
|
|
|
|
enum TypeMask {
|
|
|
|
kIdentity_Mask = 0,
|
|
|
|
kTranslate_Mask = 0x01, //!< set if the matrix has translation
|
|
|
|
kScale_Mask = 0x02, //!< set if the matrix has X or Y scale
|
|
|
|
kAffine_Mask = 0x04, //!< set if the matrix skews or rotates
|
|
|
|
kPerspective_Mask = 0x08 //!< set if the matrix is in perspective
|
|
|
|
};
|
|
|
|
|
2012-08-23 18:09:54 +00:00
|
|
|
/** Returns a bitfield describing the transformations the matrix may
|
2012-07-13 14:39:51 +00:00
|
|
|
perform. The bitfield is computed conservatively, so it may include
|
2012-08-23 18:09:54 +00:00
|
|
|
false positives. For example, when kPerspective_Mask is true, all
|
2012-07-13 14:39:51 +00:00
|
|
|
other bits may be set to true even in the case of a pure perspective
|
|
|
|
transform.
|
2012-07-12 14:01:32 +00:00
|
|
|
*/
|
2008-12-17 15:59:43 +00:00
|
|
|
TypeMask getType() const {
|
|
|
|
if (fTypeMask & kUnknown_Mask) {
|
|
|
|
fTypeMask = this->computeTypeMask();
|
|
|
|
}
|
|
|
|
// only return the public masks
|
|
|
|
return (TypeMask)(fTypeMask & 0xF);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Returns true if the matrix is identity.
|
|
|
|
*/
|
|
|
|
bool isIdentity() const {
|
|
|
|
return this->getType() == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Returns true if will map a rectangle to another rectangle. This can be
|
|
|
|
true if the matrix is identity, scale-only, or rotates a multiple of
|
|
|
|
90 degrees.
|
|
|
|
*/
|
|
|
|
bool rectStaysRect() const {
|
|
|
|
if (fTypeMask & kUnknown_Mask) {
|
|
|
|
fTypeMask = this->computeTypeMask();
|
|
|
|
}
|
|
|
|
return (fTypeMask & kRectStaysRect_Mask) != 0;
|
|
|
|
}
|
2011-05-10 13:52:42 +00:00
|
|
|
// alias for rectStaysRect()
|
|
|
|
bool preservesAxisAlignment() const { return this->rectStaysRect(); }
|
|
|
|
|
|
|
|
/**
|
2011-08-30 15:13:55 +00:00
|
|
|
* Returns true if the matrix contains perspective elements.
|
2011-05-10 13:52:42 +00:00
|
|
|
*/
|
|
|
|
bool hasPerspective() const {
|
2011-08-30 15:13:55 +00:00
|
|
|
return SkToBool(this->getPerspectiveTypeMaskOnly() &
|
|
|
|
kPerspective_Mask);
|
2011-05-10 13:52:42 +00:00
|
|
|
}
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2013-01-22 13:34:01 +00:00
|
|
|
/** Returns true if the matrix contains only translation, rotation or uniform scale
|
|
|
|
Returns false if other transformation types are included or is degenerate
|
|
|
|
*/
|
|
|
|
bool isSimilarity(SkScalar tol = SK_ScalarNearlyZero) const;
|
|
|
|
|
2013-04-09 14:01:44 +00:00
|
|
|
/** Returns true if the matrix contains only translation, rotation or scale
|
|
|
|
(non-uniform scale is allowed).
|
|
|
|
Returns false if other transformation types are included or is degenerate
|
|
|
|
*/
|
|
|
|
bool preservesRightAngles(SkScalar tol = SK_ScalarNearlyZero) const;
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
enum {
|
|
|
|
kMScaleX,
|
|
|
|
kMSkewX,
|
|
|
|
kMTransX,
|
|
|
|
kMSkewY,
|
|
|
|
kMScaleY,
|
|
|
|
kMTransY,
|
|
|
|
kMPersp0,
|
|
|
|
kMPersp1,
|
|
|
|
kMPersp2
|
|
|
|
};
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2011-07-13 19:41:55 +00:00
|
|
|
/** Affine arrays are in column major order
|
|
|
|
because that's how PDF and XPS like it.
|
|
|
|
*/
|
|
|
|
enum {
|
|
|
|
kAScaleX,
|
|
|
|
kASkewY,
|
|
|
|
kASkewX,
|
|
|
|
kAScaleY,
|
|
|
|
kATransX,
|
|
|
|
kATransY
|
|
|
|
};
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
SkScalar operator[](int index) const {
|
|
|
|
SkASSERT((unsigned)index < 9);
|
|
|
|
return fMat[index];
|
|
|
|
}
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
SkScalar get(int index) const {
|
|
|
|
SkASSERT((unsigned)index < 9);
|
|
|
|
return fMat[index];
|
|
|
|
}
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
SkScalar getScaleX() const { return fMat[kMScaleX]; }
|
|
|
|
SkScalar getScaleY() const { return fMat[kMScaleY]; }
|
|
|
|
SkScalar getSkewY() const { return fMat[kMSkewY]; }
|
|
|
|
SkScalar getSkewX() const { return fMat[kMSkewX]; }
|
|
|
|
SkScalar getTranslateX() const { return fMat[kMTransX]; }
|
|
|
|
SkScalar getTranslateY() const { return fMat[kMTransY]; }
|
2011-10-07 21:55:56 +00:00
|
|
|
SkPersp getPerspX() const { return fMat[kMPersp0]; }
|
|
|
|
SkPersp getPerspY() const { return fMat[kMPersp1]; }
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2010-03-01 14:54:05 +00:00
|
|
|
SkScalar& operator[](int index) {
|
|
|
|
SkASSERT((unsigned)index < 9);
|
|
|
|
this->setTypeMask(kUnknown_Mask);
|
|
|
|
return fMat[index];
|
|
|
|
}
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
void set(int index, SkScalar value) {
|
|
|
|
SkASSERT((unsigned)index < 9);
|
|
|
|
fMat[index] = value;
|
|
|
|
this->setTypeMask(kUnknown_Mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
void setScaleX(SkScalar v) { this->set(kMScaleX, v); }
|
|
|
|
void setScaleY(SkScalar v) { this->set(kMScaleY, v); }
|
|
|
|
void setSkewY(SkScalar v) { this->set(kMSkewY, v); }
|
|
|
|
void setSkewX(SkScalar v) { this->set(kMSkewX, v); }
|
|
|
|
void setTranslateX(SkScalar v) { this->set(kMTransX, v); }
|
|
|
|
void setTranslateY(SkScalar v) { this->set(kMTransY, v); }
|
2011-10-07 21:55:56 +00:00
|
|
|
void setPerspX(SkPersp v) { this->set(kMPersp0, v); }
|
|
|
|
void setPerspY(SkPersp v) { this->set(kMPersp1, v); }
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2011-05-10 13:52:42 +00:00
|
|
|
void setAll(SkScalar scaleX, SkScalar skewX, SkScalar transX,
|
|
|
|
SkScalar skewY, SkScalar scaleY, SkScalar transY,
|
2011-10-07 21:55:56 +00:00
|
|
|
SkPersp persp0, SkPersp persp1, SkPersp persp2) {
|
2011-05-10 13:52:42 +00:00
|
|
|
fMat[kMScaleX] = scaleX;
|
|
|
|
fMat[kMSkewX] = skewX;
|
|
|
|
fMat[kMTransX] = transX;
|
|
|
|
fMat[kMSkewY] = skewY;
|
|
|
|
fMat[kMScaleY] = scaleY;
|
|
|
|
fMat[kMTransY] = transY;
|
|
|
|
fMat[kMPersp0] = persp0;
|
|
|
|
fMat[kMPersp1] = persp1;
|
|
|
|
fMat[kMPersp2] = persp2;
|
|
|
|
this->setTypeMask(kUnknown_Mask);
|
|
|
|
}
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Set the matrix to identity
|
|
|
|
*/
|
|
|
|
void reset();
|
2011-05-10 13:52:42 +00:00
|
|
|
// alias for reset()
|
|
|
|
void setIdentity() { this->reset(); }
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Set the matrix to translate by (dx, dy).
|
|
|
|
*/
|
|
|
|
void setTranslate(SkScalar dx, SkScalar dy);
|
2012-11-07 16:17:24 +00:00
|
|
|
void setTranslate(const SkVector& v) { this->setTranslate(v.fX, v.fY); }
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Set the matrix to scale by sx and sy, with a pivot point at (px, py).
|
|
|
|
The pivot point is the coordinate that should remain unchanged by the
|
|
|
|
specified transformation.
|
|
|
|
*/
|
|
|
|
void setScale(SkScalar sx, SkScalar sy, SkScalar px, SkScalar py);
|
|
|
|
/** Set the matrix to scale by sx and sy.
|
|
|
|
*/
|
|
|
|
void setScale(SkScalar sx, SkScalar sy);
|
2011-07-18 19:31:59 +00:00
|
|
|
/** Set the matrix to scale by 1/divx and 1/divy. Returns false and doesn't
|
|
|
|
touch the matrix if either divx or divy is zero.
|
|
|
|
*/
|
|
|
|
bool setIDiv(int divx, int divy);
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Set the matrix to rotate by the specified number of degrees, with a
|
|
|
|
pivot point at (px, py). The pivot point is the coordinate that should
|
|
|
|
remain unchanged by the specified transformation.
|
|
|
|
*/
|
|
|
|
void setRotate(SkScalar degrees, SkScalar px, SkScalar py);
|
|
|
|
/** Set the matrix to rotate about (0,0) by the specified number of degrees.
|
|
|
|
*/
|
|
|
|
void setRotate(SkScalar degrees);
|
|
|
|
/** Set the matrix to rotate by the specified sine and cosine values, with
|
|
|
|
a pivot point at (px, py). The pivot point is the coordinate that
|
|
|
|
should remain unchanged by the specified transformation.
|
|
|
|
*/
|
|
|
|
void setSinCos(SkScalar sinValue, SkScalar cosValue,
|
|
|
|
SkScalar px, SkScalar py);
|
|
|
|
/** Set the matrix to rotate by the specified sine and cosine values.
|
|
|
|
*/
|
|
|
|
void setSinCos(SkScalar sinValue, SkScalar cosValue);
|
|
|
|
/** Set the matrix to skew by sx and sy, with a pivot point at (px, py).
|
|
|
|
The pivot point is the coordinate that should remain unchanged by the
|
|
|
|
specified transformation.
|
|
|
|
*/
|
|
|
|
void setSkew(SkScalar kx, SkScalar ky, SkScalar px, SkScalar py);
|
|
|
|
/** Set the matrix to skew by sx and sy.
|
|
|
|
*/
|
|
|
|
void setSkew(SkScalar kx, SkScalar ky);
|
2014-03-18 12:51:48 +00:00
|
|
|
/** Set the matrix to the concatenation of the two specified matrices.
|
|
|
|
Either of the two matrices may also be the target matrix.
|
|
|
|
*this = a * b;
|
2008-12-17 15:59:43 +00:00
|
|
|
*/
|
2014-03-18 12:51:48 +00:00
|
|
|
void setConcat(const SkMatrix& a, const SkMatrix& b);
|
2008-12-17 15:59:43 +00:00
|
|
|
|
|
|
|
/** Preconcats the matrix with the specified translation.
|
|
|
|
M' = M * T(dx, dy)
|
|
|
|
*/
|
2014-03-18 12:51:48 +00:00
|
|
|
void preTranslate(SkScalar dx, SkScalar dy);
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Preconcats the matrix with the specified scale.
|
|
|
|
M' = M * S(sx, sy, px, py)
|
|
|
|
*/
|
2014-03-18 12:51:48 +00:00
|
|
|
void preScale(SkScalar sx, SkScalar sy, SkScalar px, SkScalar py);
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Preconcats the matrix with the specified scale.
|
|
|
|
M' = M * S(sx, sy)
|
|
|
|
*/
|
2014-03-18 12:51:48 +00:00
|
|
|
void preScale(SkScalar sx, SkScalar sy);
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Preconcats the matrix with the specified rotation.
|
|
|
|
M' = M * R(degrees, px, py)
|
|
|
|
*/
|
2014-03-18 12:51:48 +00:00
|
|
|
void preRotate(SkScalar degrees, SkScalar px, SkScalar py);
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Preconcats the matrix with the specified rotation.
|
|
|
|
M' = M * R(degrees)
|
|
|
|
*/
|
2014-03-18 12:51:48 +00:00
|
|
|
void preRotate(SkScalar degrees);
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Preconcats the matrix with the specified skew.
|
|
|
|
M' = M * K(kx, ky, px, py)
|
|
|
|
*/
|
2014-03-18 12:51:48 +00:00
|
|
|
void preSkew(SkScalar kx, SkScalar ky, SkScalar px, SkScalar py);
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Preconcats the matrix with the specified skew.
|
|
|
|
M' = M * K(kx, ky)
|
|
|
|
*/
|
2014-03-18 12:51:48 +00:00
|
|
|
void preSkew(SkScalar kx, SkScalar ky);
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Preconcats the matrix with the specified matrix.
|
|
|
|
M' = M * other
|
|
|
|
*/
|
2014-03-18 12:51:48 +00:00
|
|
|
void preConcat(const SkMatrix& other);
|
2008-12-17 15:59:43 +00:00
|
|
|
|
|
|
|
/** Postconcats the matrix with the specified translation.
|
|
|
|
M' = T(dx, dy) * M
|
|
|
|
*/
|
2014-03-18 12:51:48 +00:00
|
|
|
void postTranslate(SkScalar dx, SkScalar dy);
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Postconcats the matrix with the specified scale.
|
|
|
|
M' = S(sx, sy, px, py) * M
|
|
|
|
*/
|
2014-03-18 12:51:48 +00:00
|
|
|
void postScale(SkScalar sx, SkScalar sy, SkScalar px, SkScalar py);
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Postconcats the matrix with the specified scale.
|
|
|
|
M' = S(sx, sy) * M
|
|
|
|
*/
|
2014-03-18 12:51:48 +00:00
|
|
|
void postScale(SkScalar sx, SkScalar sy);
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Postconcats the matrix by dividing it by the specified integers.
|
|
|
|
M' = S(1/divx, 1/divy, 0, 0) * M
|
|
|
|
*/
|
|
|
|
bool postIDiv(int divx, int divy);
|
|
|
|
/** Postconcats the matrix with the specified rotation.
|
|
|
|
M' = R(degrees, px, py) * M
|
|
|
|
*/
|
2014-03-18 12:51:48 +00:00
|
|
|
void postRotate(SkScalar degrees, SkScalar px, SkScalar py);
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Postconcats the matrix with the specified rotation.
|
|
|
|
M' = R(degrees) * M
|
|
|
|
*/
|
2014-03-18 12:51:48 +00:00
|
|
|
void postRotate(SkScalar degrees);
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Postconcats the matrix with the specified skew.
|
|
|
|
M' = K(kx, ky, px, py) * M
|
|
|
|
*/
|
2014-03-18 12:51:48 +00:00
|
|
|
void postSkew(SkScalar kx, SkScalar ky, SkScalar px, SkScalar py);
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Postconcats the matrix with the specified skew.
|
|
|
|
M' = K(kx, ky) * M
|
|
|
|
*/
|
2014-03-18 12:51:48 +00:00
|
|
|
void postSkew(SkScalar kx, SkScalar ky);
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Postconcats the matrix with the specified matrix.
|
|
|
|
M' = other * M
|
|
|
|
*/
|
2014-03-18 12:51:48 +00:00
|
|
|
void postConcat(const SkMatrix& other);
|
2008-12-17 15:59:43 +00:00
|
|
|
|
|
|
|
enum ScaleToFit {
|
|
|
|
/**
|
|
|
|
* Scale in X and Y independently, so that src matches dst exactly.
|
|
|
|
* This may change the aspect ratio of the src.
|
|
|
|
*/
|
|
|
|
kFill_ScaleToFit,
|
|
|
|
/**
|
|
|
|
* Compute a scale that will maintain the original src aspect ratio,
|
|
|
|
* but will also ensure that src fits entirely inside dst. At least one
|
|
|
|
* axis (X or Y) will fit exactly. kStart aligns the result to the
|
|
|
|
* left and top edges of dst.
|
|
|
|
*/
|
|
|
|
kStart_ScaleToFit,
|
|
|
|
/**
|
|
|
|
* Compute a scale that will maintain the original src aspect ratio,
|
|
|
|
* but will also ensure that src fits entirely inside dst. At least one
|
|
|
|
* axis (X or Y) will fit exactly. The result is centered inside dst.
|
|
|
|
*/
|
|
|
|
kCenter_ScaleToFit,
|
|
|
|
/**
|
|
|
|
* Compute a scale that will maintain the original src aspect ratio,
|
|
|
|
* but will also ensure that src fits entirely inside dst. At least one
|
|
|
|
* axis (X or Y) will fit exactly. kEnd aligns the result to the
|
|
|
|
* right and bottom edges of dst.
|
|
|
|
*/
|
|
|
|
kEnd_ScaleToFit
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Set the matrix to the scale and translate values that map the source
|
|
|
|
rectangle to the destination rectangle, returning true if the the result
|
|
|
|
can be represented.
|
|
|
|
@param src the source rectangle to map from.
|
|
|
|
@param dst the destination rectangle to map to.
|
|
|
|
@param stf the ScaleToFit option
|
|
|
|
@return true if the matrix can be represented by the rectangle mapping.
|
|
|
|
*/
|
|
|
|
bool setRectToRect(const SkRect& src, const SkRect& dst, ScaleToFit stf);
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Set the matrix such that the specified src points would map to the
|
|
|
|
specified dst points. count must be within [0..4].
|
|
|
|
@param src The array of src points
|
|
|
|
@param dst The array of dst points
|
|
|
|
@param count The number of points to use for the transformation
|
|
|
|
@return true if the matrix was set to the specified transformation
|
|
|
|
*/
|
|
|
|
bool setPolyToPoly(const SkPoint src[], const SkPoint dst[], int count);
|
|
|
|
|
|
|
|
/** If this matrix can be inverted, return true and if inverse is not null,
|
|
|
|
set inverse to be the inverse of this matrix. If this matrix cannot be
|
|
|
|
inverted, ignore inverse and return false
|
|
|
|
*/
|
2012-10-31 16:50:38 +00:00
|
|
|
bool SK_WARN_UNUSED_RESULT invert(SkMatrix* inverse) const {
|
|
|
|
// Allow the trivial case to be inlined.
|
|
|
|
if (this->isIdentity()) {
|
|
|
|
if (NULL != inverse) {
|
|
|
|
inverse->reset();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return this->invertNonIdentity(inverse);
|
|
|
|
}
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2011-07-13 19:41:55 +00:00
|
|
|
/** Fills the passed array with affine identity values
|
|
|
|
in column major order.
|
|
|
|
@param affine The array to fill with affine identity values.
|
|
|
|
Must not be NULL.
|
|
|
|
*/
|
|
|
|
static void SetAffineIdentity(SkScalar affine[6]);
|
|
|
|
|
|
|
|
/** Fills the passed array with the affine values in column major order.
|
|
|
|
If the matrix is a perspective transform, returns false
|
|
|
|
and does not change the passed array.
|
|
|
|
@param affine The array to fill with affine values. Ignored if NULL.
|
2010-10-26 19:45:06 +00:00
|
|
|
*/
|
2011-07-13 19:41:55 +00:00
|
|
|
bool asAffine(SkScalar affine[6]) const;
|
2010-10-26 19:45:06 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Apply this matrix to the array of points specified by src, and write
|
|
|
|
the transformed points into the array of points specified by dst.
|
|
|
|
dst[] = M * src[]
|
|
|
|
@param dst Where the transformed coordinates are written. It must
|
|
|
|
contain at least count entries
|
|
|
|
@param src The original coordinates that are to be transformed. It
|
|
|
|
must contain at least count entries
|
|
|
|
@param count The number of points in src to read, and then transform
|
|
|
|
into dst.
|
|
|
|
*/
|
|
|
|
void mapPoints(SkPoint dst[], const SkPoint src[], int count) const;
|
|
|
|
|
|
|
|
/** Apply this matrix to the array of points, overwriting it with the
|
|
|
|
transformed values.
|
|
|
|
dst[] = M * pts[]
|
|
|
|
@param pts The points to be transformed. It must contain at least
|
|
|
|
count entries
|
|
|
|
@param count The number of points in pts.
|
|
|
|
*/
|
|
|
|
void mapPoints(SkPoint pts[], int count) const {
|
|
|
|
this->mapPoints(pts, pts, count);
|
|
|
|
}
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2011-08-23 14:39:01 +00:00
|
|
|
/** Like mapPoints but with custom byte stride between the points. Stride
|
|
|
|
* should be a multiple of sizeof(SkScalar).
|
|
|
|
*/
|
|
|
|
void mapPointsWithStride(SkPoint pts[], size_t stride, int count) const {
|
|
|
|
SkASSERT(stride >= sizeof(SkPoint));
|
|
|
|
SkASSERT(0 == stride % sizeof(SkScalar));
|
|
|
|
for (int i = 0; i < count; ++i) {
|
|
|
|
this->mapPoints(pts, pts, 1);
|
|
|
|
pts = (SkPoint*)((intptr_t)pts + stride);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Like mapPoints but with custom byte stride between the points.
|
|
|
|
*/
|
|
|
|
void mapPointsWithStride(SkPoint dst[], SkPoint src[],
|
|
|
|
size_t stride, int count) const {
|
|
|
|
SkASSERT(stride >= sizeof(SkPoint));
|
|
|
|
SkASSERT(0 == stride % sizeof(SkScalar));
|
|
|
|
for (int i = 0; i < count; ++i) {
|
|
|
|
this->mapPoints(dst, src, 1);
|
|
|
|
src = (SkPoint*)((intptr_t)src + stride);
|
|
|
|
dst = (SkPoint*)((intptr_t)dst + stride);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-15 21:12:11 +00:00
|
|
|
/** Apply this matrix to the array of homogeneous points, specified by src,
|
|
|
|
where a homogeneous point is defined by 3 contiguous scalar values,
|
|
|
|
and write the transformed points into the array of scalars specified by dst.
|
|
|
|
dst[] = M * src[]
|
|
|
|
@param dst Where the transformed coordinates are written. It must
|
|
|
|
contain at least 3 * count entries
|
|
|
|
@param src The original coordinates that are to be transformed. It
|
|
|
|
must contain at least 3 * count entries
|
|
|
|
@param count The number of triples (homogeneous points) in src to read,
|
|
|
|
and then transform into dst.
|
|
|
|
*/
|
|
|
|
void mapHomogeneousPoints(SkScalar dst[], const SkScalar src[], int count) const;
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
void mapXY(SkScalar x, SkScalar y, SkPoint* result) const {
|
|
|
|
SkASSERT(result);
|
|
|
|
this->getMapXYProc()(*this, x, y, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Apply this matrix to the array of vectors specified by src, and write
|
|
|
|
the transformed vectors into the array of vectors specified by dst.
|
|
|
|
This is similar to mapPoints, but ignores any translation in the matrix.
|
|
|
|
@param dst Where the transformed coordinates are written. It must
|
|
|
|
contain at least count entries
|
|
|
|
@param src The original coordinates that are to be transformed. It
|
|
|
|
must contain at least count entries
|
|
|
|
@param count The number of vectors in src to read, and then transform
|
|
|
|
into dst.
|
|
|
|
*/
|
|
|
|
void mapVectors(SkVector dst[], const SkVector src[], int count) const;
|
|
|
|
|
|
|
|
/** Apply this matrix to the array of vectors specified by src, and write
|
|
|
|
the transformed vectors into the array of vectors specified by dst.
|
|
|
|
This is similar to mapPoints, but ignores any translation in the matrix.
|
|
|
|
@param vecs The vectors to be transformed. It must contain at least
|
|
|
|
count entries
|
|
|
|
@param count The number of vectors in vecs.
|
|
|
|
*/
|
|
|
|
void mapVectors(SkVector vecs[], int count) const {
|
|
|
|
this->mapVectors(vecs, vecs, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Apply this matrix to the src rectangle, and write the transformed
|
|
|
|
rectangle into dst. This is accomplished by transforming the 4 corners
|
|
|
|
of src, and then setting dst to the bounds of those points.
|
|
|
|
@param dst Where the transformed rectangle is written.
|
|
|
|
@param src The original rectangle to be transformed.
|
|
|
|
@return the result of calling rectStaysRect()
|
|
|
|
*/
|
|
|
|
bool mapRect(SkRect* dst, const SkRect& src) const;
|
|
|
|
|
|
|
|
/** Apply this matrix to the rectangle, and write the transformed rectangle
|
|
|
|
back into it. This is accomplished by transforming the 4 corners of
|
|
|
|
rect, and then setting it to the bounds of those points
|
|
|
|
@param rect The rectangle to transform.
|
|
|
|
@return the result of calling rectStaysRect()
|
|
|
|
*/
|
|
|
|
bool mapRect(SkRect* rect) const {
|
|
|
|
return this->mapRect(rect, *rect);
|
|
|
|
}
|
|
|
|
|
2013-08-14 21:56:37 +00:00
|
|
|
/** Apply this matrix to the src rectangle, and write the four transformed
|
|
|
|
points into dst. The points written to dst will be the original top-left, top-right,
|
|
|
|
bottom-right, and bottom-left points transformed by the matrix.
|
|
|
|
@param dst Where the transformed quad is written.
|
|
|
|
@param rect The original rectangle to be transformed.
|
|
|
|
*/
|
|
|
|
void mapRectToQuad(SkPoint dst[4], const SkRect& rect) const {
|
|
|
|
// This could potentially be faster if we only transformed each x and y of the rect once.
|
|
|
|
rect.toQuad(dst);
|
|
|
|
this->mapPoints(dst, 4);
|
|
|
|
}
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Return the mean radius of a circle after it has been mapped by
|
|
|
|
this matrix. NOTE: in perspective this value assumes the circle
|
|
|
|
has its center at the origin.
|
|
|
|
*/
|
|
|
|
SkScalar mapRadius(SkScalar radius) const;
|
|
|
|
|
|
|
|
typedef void (*MapXYProc)(const SkMatrix& mat, SkScalar x, SkScalar y,
|
|
|
|
SkPoint* result);
|
|
|
|
|
|
|
|
static MapXYProc GetMapXYProc(TypeMask mask) {
|
|
|
|
SkASSERT((mask & ~kAllMasks) == 0);
|
|
|
|
return gMapXYProcs[mask & kAllMasks];
|
|
|
|
}
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
MapXYProc getMapXYProc() const {
|
|
|
|
return GetMapXYProc(this->getType());
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef void (*MapPtsProc)(const SkMatrix& mat, SkPoint dst[],
|
|
|
|
const SkPoint src[], int count);
|
|
|
|
|
|
|
|
static MapPtsProc GetMapPtsProc(TypeMask mask) {
|
|
|
|
SkASSERT((mask & ~kAllMasks) == 0);
|
|
|
|
return gMapPtsProcs[mask & kAllMasks];
|
|
|
|
}
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
MapPtsProc getMapPtsProc() const {
|
|
|
|
return GetMapPtsProc(this->getType());
|
|
|
|
}
|
|
|
|
|
|
|
|
/** If the matrix can be stepped in X (not complex perspective)
|
|
|
|
then return true and if step[XY] is not null, return the step[XY] value.
|
|
|
|
If it cannot, return false and ignore step.
|
|
|
|
*/
|
|
|
|
bool fixedStepInX(SkScalar y, SkFixed* stepX, SkFixed* stepY) const;
|
|
|
|
|
2012-03-26 15:24:27 +00:00
|
|
|
/** Efficient comparison of two matrices. It distinguishes between zero and
|
|
|
|
* negative zero. It will return false when the sign of zero values is the
|
|
|
|
* only difference between the two matrices. It considers NaN values to be
|
|
|
|
* equal to themselves. So a matrix full of NaNs is "cheap equal" to
|
|
|
|
* another matrix full of NaNs iff the NaN values are bitwise identical
|
|
|
|
* while according to strict the strict == test a matrix with a NaN value
|
|
|
|
* is equal to nothing, including itself.
|
|
|
|
*/
|
|
|
|
bool cheapEqualTo(const SkMatrix& m) const {
|
|
|
|
return 0 == memcmp(fMat, m.fMat, sizeof(fMat));
|
2008-12-17 15:59:43 +00:00
|
|
|
}
|
|
|
|
|
2012-03-26 15:24:27 +00:00
|
|
|
friend bool operator==(const SkMatrix& a, const SkMatrix& b);
|
2011-06-01 15:11:22 +00:00
|
|
|
friend bool operator!=(const SkMatrix& a, const SkMatrix& b) {
|
|
|
|
return !(a == b);
|
|
|
|
}
|
2009-06-29 16:02:20 +00:00
|
|
|
|
2009-06-29 16:14:41 +00:00
|
|
|
enum {
|
2012-06-08 18:30:46 +00:00
|
|
|
// writeTo/readFromMemory will never return a value larger than this
|
2009-06-29 16:14:41 +00:00
|
|
|
kMaxFlattenSize = 9 * sizeof(SkScalar) + sizeof(uint32_t)
|
|
|
|
};
|
2009-06-29 16:02:20 +00:00
|
|
|
// return the number of bytes written, whether or not buffer is null
|
2013-11-05 15:46:56 +00:00
|
|
|
size_t writeToMemory(void* buffer) const;
|
|
|
|
/**
|
|
|
|
* Reads data from the buffer parameter
|
|
|
|
*
|
|
|
|
* @param buffer Memory to read from
|
|
|
|
* @param length Amount of memory available in the buffer
|
|
|
|
* @return number of bytes read (must be a multiple of 4) or
|
|
|
|
* 0 if there was not enough memory available
|
|
|
|
*/
|
|
|
|
size_t readFromMemory(const void* buffer, size_t length);
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2013-01-15 20:17:47 +00:00
|
|
|
SkDEVCODE(void dump() const;)
|
2014-03-13 18:02:17 +00:00
|
|
|
SK_TO_STRING_NONVIRT()
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2013-12-09 19:15:37 +00:00
|
|
|
/**
|
2014-05-20 17:02:03 +00:00
|
|
|
* Calculates the minimum scaling factor of the matrix as computed from the SVD of the upper
|
|
|
|
* left 2x2. If the matrix has perspective -1 is returned.
|
2013-12-09 19:15:37 +00:00
|
|
|
*
|
2014-05-20 14:53:45 +00:00
|
|
|
* @return minumum scale factor
|
2013-12-09 19:15:37 +00:00
|
|
|
*/
|
2014-05-20 14:53:45 +00:00
|
|
|
SkScalar getMinScale() const;
|
2013-12-09 19:15:37 +00:00
|
|
|
|
2011-05-10 13:52:42 +00:00
|
|
|
/**
|
2014-05-20 17:02:03 +00:00
|
|
|
* Calculates the maximum scaling factor of the matrix as computed from the SVD of the upper
|
|
|
|
* left 2x2. If the matrix has perspective -1 is returned.
|
2011-05-10 13:52:42 +00:00
|
|
|
*
|
2014-05-20 14:53:45 +00:00
|
|
|
* @return maximum scale factor
|
2011-05-10 13:52:42 +00:00
|
|
|
*/
|
2014-05-20 14:53:45 +00:00
|
|
|
SkScalar getMaxScale() const;
|
2011-05-10 13:52:42 +00:00
|
|
|
|
2014-05-20 17:02:03 +00:00
|
|
|
/**
|
|
|
|
* Gets both the min and max scale factors. The min scale factor is scaleFactors[0] and the max
|
|
|
|
* is scaleFactors[1]. If the matrix has perspective false will be returned and scaleFactors
|
|
|
|
* will be unchanged.
|
|
|
|
*/
|
|
|
|
bool getMinMaxScales(SkScalar scaleFactors[2]) const;
|
2014-05-21 03:05:49 +00:00
|
|
|
|
2011-05-10 13:52:42 +00:00
|
|
|
/**
|
|
|
|
* Return a reference to a const identity matrix
|
|
|
|
*/
|
|
|
|
static const SkMatrix& I();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a reference to a const matrix that is "invalid", one that could
|
|
|
|
* never be used.
|
|
|
|
*/
|
|
|
|
static const SkMatrix& InvalidMatrix();
|
|
|
|
|
2014-05-19 15:51:12 +00:00
|
|
|
/**
|
|
|
|
* Return the concatenation of two matrices, a * b.
|
|
|
|
*/
|
|
|
|
static SkMatrix Concat(const SkMatrix& a, const SkMatrix& b) {
|
|
|
|
SkMatrix result;
|
|
|
|
result.setConcat(a, b);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-06-24 18:30:49 +00:00
|
|
|
/**
|
|
|
|
* Testing routine; the matrix's type cache should never need to be
|
|
|
|
* manually invalidated during normal use.
|
|
|
|
*/
|
|
|
|
void dirtyMatrixTypeCache() {
|
|
|
|
this->setTypeMask(kUnknown_Mask);
|
|
|
|
}
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
private:
|
|
|
|
enum {
|
|
|
|
/** Set if the matrix will map a rectangle to another rectangle. This
|
|
|
|
can be true if the matrix is scale-only, or rotates a multiple of
|
2012-04-10 16:20:41 +00:00
|
|
|
90 degrees.
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
This bit will be set on identity matrices
|
|
|
|
*/
|
|
|
|
kRectStaysRect_Mask = 0x10,
|
|
|
|
|
2011-08-30 15:13:55 +00:00
|
|
|
/** Set if the perspective bit is valid even though the rest of
|
|
|
|
the matrix is Unknown.
|
|
|
|
*/
|
|
|
|
kOnlyPerspectiveValid_Mask = 0x40,
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
kUnknown_Mask = 0x80,
|
2011-06-01 15:11:22 +00:00
|
|
|
|
|
|
|
kORableMasks = kTranslate_Mask |
|
|
|
|
kScale_Mask |
|
|
|
|
kAffine_Mask |
|
|
|
|
kPerspective_Mask,
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
kAllMasks = kTranslate_Mask |
|
|
|
|
kScale_Mask |
|
|
|
|
kAffine_Mask |
|
|
|
|
kPerspective_Mask |
|
|
|
|
kRectStaysRect_Mask
|
|
|
|
};
|
|
|
|
|
2012-03-15 13:07:25 +00:00
|
|
|
SkScalar fMat[9];
|
2014-07-09 02:37:47 +00:00
|
|
|
mutable SkTRacy<uint32_t> fTypeMask;
|
2008-12-17 15:59:43 +00:00
|
|
|
|
|
|
|
uint8_t computeTypeMask() const;
|
2011-08-30 15:13:55 +00:00
|
|
|
uint8_t computePerspectiveTypeMask() const;
|
2008-12-17 15:59:43 +00:00
|
|
|
|
|
|
|
void setTypeMask(int mask) {
|
|
|
|
// allow kUnknown or a valid mask
|
2011-08-30 15:13:55 +00:00
|
|
|
SkASSERT(kUnknown_Mask == mask || (mask & kAllMasks) == mask ||
|
2012-07-12 14:44:52 +00:00
|
|
|
((kUnknown_Mask | kOnlyPerspectiveValid_Mask) & mask)
|
|
|
|
== (kUnknown_Mask | kOnlyPerspectiveValid_Mask));
|
2008-12-17 15:59:43 +00:00
|
|
|
fTypeMask = SkToU8(mask);
|
|
|
|
}
|
2011-06-01 15:11:22 +00:00
|
|
|
|
|
|
|
void orTypeMask(int mask) {
|
|
|
|
SkASSERT((mask & kORableMasks) == mask);
|
|
|
|
fTypeMask = SkToU8(fTypeMask | mask);
|
|
|
|
}
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
void clearTypeMask(int mask) {
|
|
|
|
// only allow a valid mask
|
|
|
|
SkASSERT((mask & kAllMasks) == mask);
|
2014-07-09 02:37:47 +00:00
|
|
|
fTypeMask = fTypeMask & ~mask;
|
2008-12-17 15:59:43 +00:00
|
|
|
}
|
2011-08-30 15:13:55 +00:00
|
|
|
|
|
|
|
TypeMask getPerspectiveTypeMaskOnly() const {
|
|
|
|
if ((fTypeMask & kUnknown_Mask) &&
|
|
|
|
!(fTypeMask & kOnlyPerspectiveValid_Mask)) {
|
|
|
|
fTypeMask = this->computePerspectiveTypeMask();
|
|
|
|
}
|
|
|
|
return (TypeMask)(fTypeMask & 0xF);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Returns true if we already know that the matrix is identity;
|
|
|
|
false otherwise.
|
|
|
|
*/
|
|
|
|
bool isTriviallyIdentity() const {
|
|
|
|
if (fTypeMask & kUnknown_Mask) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return ((fTypeMask & 0xF) == 0);
|
|
|
|
}
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2012-10-31 16:50:38 +00:00
|
|
|
bool SK_WARN_UNUSED_RESULT invertNonIdentity(SkMatrix* inverse) const;
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
static bool Poly2Proc(const SkPoint[], SkMatrix*, const SkPoint& scale);
|
|
|
|
static bool Poly3Proc(const SkPoint[], SkMatrix*, const SkPoint& scale);
|
|
|
|
static bool Poly4Proc(const SkPoint[], SkMatrix*, const SkPoint& scale);
|
|
|
|
|
|
|
|
static void Identity_xy(const SkMatrix&, SkScalar, SkScalar, SkPoint*);
|
|
|
|
static void Trans_xy(const SkMatrix&, SkScalar, SkScalar, SkPoint*);
|
|
|
|
static void Scale_xy(const SkMatrix&, SkScalar, SkScalar, SkPoint*);
|
|
|
|
static void ScaleTrans_xy(const SkMatrix&, SkScalar, SkScalar, SkPoint*);
|
|
|
|
static void Rot_xy(const SkMatrix&, SkScalar, SkScalar, SkPoint*);
|
|
|
|
static void RotTrans_xy(const SkMatrix&, SkScalar, SkScalar, SkPoint*);
|
|
|
|
static void Persp_xy(const SkMatrix&, SkScalar, SkScalar, SkPoint*);
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
static const MapXYProc gMapXYProcs[];
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
static void Identity_pts(const SkMatrix&, SkPoint[], const SkPoint[], int);
|
|
|
|
static void Trans_pts(const SkMatrix&, SkPoint dst[], const SkPoint[], int);
|
|
|
|
static void Scale_pts(const SkMatrix&, SkPoint dst[], const SkPoint[], int);
|
|
|
|
static void ScaleTrans_pts(const SkMatrix&, SkPoint dst[], const SkPoint[],
|
|
|
|
int count);
|
|
|
|
static void Rot_pts(const SkMatrix&, SkPoint dst[], const SkPoint[], int);
|
|
|
|
static void RotTrans_pts(const SkMatrix&, SkPoint dst[], const SkPoint[],
|
|
|
|
int count);
|
|
|
|
static void Persp_pts(const SkMatrix&, SkPoint dst[], const SkPoint[], int);
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
static const MapPtsProc gMapPtsProcs[];
|
|
|
|
|
|
|
|
friend class SkPerspIter;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|