Lines Matching refs:aMatrix
230 HomogenMatrix aMatrix = new HomogenMatrix(); in testThreeD() local
239 aMatrix.Line1 = aLines[ 0 ]; in testThreeD()
240 aMatrix.Line2 = aLines[ 1 ]; in testThreeD()
241 aMatrix.Line3 = aLines[ 2 ]; in testThreeD()
242 aMatrix.Line4 = aLines[ 3 ]; in testThreeD()
259 aMatrix.Line1.Column1 = fCosY * fCosZ; in testThreeD()
260 aMatrix.Line1.Column2 = fCosY * -fSinZ; in testThreeD()
261 aMatrix.Line1.Column3 = fSinY; in testThreeD()
263 aMatrix.Line2.Column1 = fSinX * fSinY * fCosZ + fCosX * fSinZ; in testThreeD()
264 aMatrix.Line2.Column2 = -fSinX * fSinY * fSinZ + fCosX * fCosZ; in testThreeD()
265 aMatrix.Line2.Column3 = -fSinX * fCosY; in testThreeD()
267 aMatrix.Line3.Column1 = -fCosX * fSinY * fCosZ + fSinX * fSinZ; in testThreeD()
268 aMatrix.Line3.Column2 = fCosX * fSinY * fSinZ + fSinX * fCosZ; in testThreeD()
269 aMatrix.Line3.Column3 = fCosX * fCosY; in testThreeD()
271 aDiaProp.setPropertyValue( "D3DTransformMatrix", aMatrix ); in testThreeD()