◆ mapPoint() [1/2]
DPoint DAffineMatrix::mapPoint |
( |
const DPoint & |
src | ) |
const |
|
inline |
◆ mapPoint() [2/2]
DPoint DAffineMatrix::mapPoint |
( |
const SkPoint & |
src | ) |
const |
|
inline |
◆ operator[]() [1/2]
double & DAffineMatrix::operator[] |
( |
int |
index | ) |
|
|
inline |
◆ operator[]() [2/2]
double DAffineMatrix::operator[] |
( |
int |
index | ) |
const |
|
inline |
◆ reset()
void DAffineMatrix::reset |
( |
| ) |
|
|
inline |
Set the matrix to identity
Definition at line 105 of file GrDistanceFieldGenFromVector.cpp.
105 {
106 fMat[0] = fMat[4] = 1.0;
107 fMat[1] = fMat[3] =
108 fMat[2] = fMat[5] = 0.0;
109 }
◆ setAffine()
void DAffineMatrix::setAffine |
( |
double |
m11, |
|
|
double |
m12, |
|
|
double |
m13, |
|
|
double |
m21, |
|
|
double |
m22, |
|
|
double |
m23 |
|
) |
| |
|
inline |
Definition at line 93 of file GrDistanceFieldGenFromVector.cpp.
94 {
95 fMat[0] = m11;
96 fMat[1] = m12;
97 fMat[2] = m13;
98 fMat[3] = m21;
99 fMat[4] = m22;
100 fMat[5] = m23;
101 }
◆ setIdentity()
void DAffineMatrix::setIdentity |
( |
| ) |
|
|
inline |
The documentation for this class was generated from the following file: