Lines Matching refs:aMatrix

2281 		drawing::HomogenMatrix3 aMatrix;  in setPropertyValueImpl()  local
2282 if(rValue >>= aMatrix) in setPropertyValueImpl()
2289 aNewHomogenMatrix.set(0, 0, aMatrix.Line1.Column1); in setPropertyValueImpl()
2290 aNewHomogenMatrix.set(0, 1, aMatrix.Line1.Column2); in setPropertyValueImpl()
2291 aNewHomogenMatrix.set(0, 2, aMatrix.Line1.Column3); in setPropertyValueImpl()
2292 aNewHomogenMatrix.set(1, 0, aMatrix.Line2.Column1); in setPropertyValueImpl()
2293 aNewHomogenMatrix.set(1, 1, aMatrix.Line2.Column2); in setPropertyValueImpl()
2294 aNewHomogenMatrix.set(1, 2, aMatrix.Line2.Column3); in setPropertyValueImpl()
2295 aNewHomogenMatrix.set(2, 0, aMatrix.Line3.Column1); in setPropertyValueImpl()
2296 aNewHomogenMatrix.set(2, 1, aMatrix.Line3.Column2); in setPropertyValueImpl()
2297 aNewHomogenMatrix.set(2, 2, aMatrix.Line3.Column3); in setPropertyValueImpl()
2730 drawing::HomogenMatrix3 aMatrix; in getPropertyValueImpl() local
2732 aMatrix.Line1.Column1 = aNewHomogenMatrix.get(0, 0); in getPropertyValueImpl()
2733 aMatrix.Line1.Column2 = aNewHomogenMatrix.get(0, 1); in getPropertyValueImpl()
2734 aMatrix.Line1.Column3 = aNewHomogenMatrix.get(0, 2); in getPropertyValueImpl()
2735 aMatrix.Line2.Column1 = aNewHomogenMatrix.get(1, 0); in getPropertyValueImpl()
2736 aMatrix.Line2.Column2 = aNewHomogenMatrix.get(1, 1); in getPropertyValueImpl()
2737 aMatrix.Line2.Column3 = aNewHomogenMatrix.get(1, 2); in getPropertyValueImpl()
2738 aMatrix.Line3.Column1 = aNewHomogenMatrix.get(2, 0); in getPropertyValueImpl()
2739 aMatrix.Line3.Column2 = aNewHomogenMatrix.get(2, 1); in getPropertyValueImpl()
2740 aMatrix.Line3.Column3 = aNewHomogenMatrix.get(2, 2); in getPropertyValueImpl()
2742 rValue <<= aMatrix; in getPropertyValueImpl()