Lines Matching refs:aM

74     ::basegfx::B3DHomMatrix aM;  in HomogenMatrixToB3DHomMatrix()
75 aM.set(0, 0, rHM.Line1.Column1); in HomogenMatrixToB3DHomMatrix()
76 aM.set(0, 1, rHM.Line1.Column2); in HomogenMatrixToB3DHomMatrix()
77 aM.set(0, 2, rHM.Line1.Column3); in HomogenMatrixToB3DHomMatrix()
78 aM.set(0, 3, rHM.Line1.Column4); in HomogenMatrixToB3DHomMatrix()
79 aM.set(1, 0, rHM.Line2.Column1); in HomogenMatrixToB3DHomMatrix()
80 aM.set(1, 1, rHM.Line2.Column2); in HomogenMatrixToB3DHomMatrix()
81 aM.set(1, 2, rHM.Line2.Column3); in HomogenMatrixToB3DHomMatrix()
82 aM.set(1, 3, rHM.Line2.Column4); in HomogenMatrixToB3DHomMatrix()
83 aM.set(2, 0, rHM.Line3.Column1); in HomogenMatrixToB3DHomMatrix()
84 aM.set(2, 1, rHM.Line3.Column2); in HomogenMatrixToB3DHomMatrix()
85 aM.set(2, 2, rHM.Line3.Column3); in HomogenMatrixToB3DHomMatrix()
86 aM.set(2, 3, rHM.Line3.Column4); in HomogenMatrixToB3DHomMatrix()
87 aM.set(3, 0, rHM.Line4.Column1); in HomogenMatrixToB3DHomMatrix()
88 aM.set(3, 1, rHM.Line4.Column2); in HomogenMatrixToB3DHomMatrix()
89 aM.set(3, 2, rHM.Line4.Column3); in HomogenMatrixToB3DHomMatrix()
90 aM.set(3, 3, rHM.Line4.Column4); in HomogenMatrixToB3DHomMatrix()
91 return aM; in HomogenMatrixToB3DHomMatrix()
96 ::basegfx::B2DHomMatrix aM; in IgnoreZ()
97 aM.set(0, 0, rM.get(0, 0)); in IgnoreZ()
98 aM.set(0, 1, rM.get(0, 1)); in IgnoreZ()
99 aM.set(0, 2, rM.get(0, 3)); in IgnoreZ()
100 aM.set(1, 0, rM.get(1, 0)); in IgnoreZ()
101 aM.set(1, 1, rM.get(1, 1)); in IgnoreZ()
102 aM.set(1, 2, rM.get(1, 3)); in IgnoreZ()
103 aM.set(2, 0, rM.get(3, 0)); in IgnoreZ()
104 aM.set(2, 1, rM.get(3, 1)); in IgnoreZ()
105 aM.set(2, 2, rM.get(3, 3)); in IgnoreZ()
106 return aM; in IgnoreZ()