Lines Matching full:matrix
443 /** Add a copy of src to the path, transformed by matrix
446 void addPath(const SkPath& src, const SkMatrix& matrix);
465 /** Transform the points in this path by matrix, and write the answer into
468 @param matrix The matrix to apply to the path
471 void transform(const SkMatrix& matrix, SkPath* dst) const;
473 /** Transform the points in this path by matrix
475 @param matrix The matrix to apply to the path
477 void transform(const SkMatrix& matrix) {
478 this->transform(matrix, this);