Lines Matching refs:SkM44
144 : INHERITED(sksg::Matrix<SkM44>::Make(SkM44())) {
177 SkM44 TransformAdapter3D::totalMatrix() const {
183 return SkM44::Translate(position.x, position.y, position.z)
184 * SkM44::Rotate({ 1, 0, 0 }, SkDegreesToRadians(rotation.x))
185 * SkM44::Rotate({ 0, 1, 0 }, SkDegreesToRadians(rotation.y))
186 * SkM44::Rotate({ 0, 0, 1 }, SkDegreesToRadians(rotation.z))
187 * SkM44::Scale(scale.x / 100, scale.y / 100, scale.z / 100)
188 * SkM44::Translate(-anchor_point.x, -anchor_point.y, -anchor_point.z);
198 // TODO: SkM44::isIdentity?
199 if (adapter->totalMatrix() == SkM44()) {