Lines Matching refs:rHomogenMatrix

131 B3DHomMatrix HomogenMatrixToB3DHomMatrix( const HomogenMatrix & rHomogenMatrix )  in HomogenMatrixToB3DHomMatrix()  argument
135 aResult.set( 0, 0, rHomogenMatrix.Line1.Column1 ); in HomogenMatrixToB3DHomMatrix()
136 aResult.set( 0, 1, rHomogenMatrix.Line1.Column2 ); in HomogenMatrixToB3DHomMatrix()
137 aResult.set( 0, 2, rHomogenMatrix.Line1.Column3 ); in HomogenMatrixToB3DHomMatrix()
138 aResult.set( 0, 3, rHomogenMatrix.Line1.Column4 ); in HomogenMatrixToB3DHomMatrix()
140 aResult.set( 1, 0, rHomogenMatrix.Line2.Column1 ); in HomogenMatrixToB3DHomMatrix()
141 aResult.set( 1, 1, rHomogenMatrix.Line2.Column2 ); in HomogenMatrixToB3DHomMatrix()
142 aResult.set( 1, 2, rHomogenMatrix.Line2.Column3 ); in HomogenMatrixToB3DHomMatrix()
143 aResult.set( 1, 3, rHomogenMatrix.Line2.Column4 ); in HomogenMatrixToB3DHomMatrix()
145 aResult.set( 2, 0, rHomogenMatrix.Line3.Column1 ); in HomogenMatrixToB3DHomMatrix()
146 aResult.set( 2, 1, rHomogenMatrix.Line3.Column2 ); in HomogenMatrixToB3DHomMatrix()
147 aResult.set( 2, 2, rHomogenMatrix.Line3.Column3 ); in HomogenMatrixToB3DHomMatrix()
148 aResult.set( 2, 3, rHomogenMatrix.Line3.Column4 ); in HomogenMatrixToB3DHomMatrix()
150 aResult.set( 3, 0, rHomogenMatrix.Line4.Column1 ); in HomogenMatrixToB3DHomMatrix()
151 aResult.set( 3, 1, rHomogenMatrix.Line4.Column2 ); in HomogenMatrixToB3DHomMatrix()
152 aResult.set( 3, 2, rHomogenMatrix.Line4.Column3 ); in HomogenMatrixToB3DHomMatrix()
153 aResult.set( 3, 3, rHomogenMatrix.Line4.Column4 ); in HomogenMatrixToB3DHomMatrix()