Esempio n. 1
0
        public static Matrix44f ToMatrixf(Pose3 pose, MatrixConventionsFlags flags)
#endif
        {
            Matrix44f ret;

            MatrixConventionsNative.osvrPose3ToMatrixf(ref pose, flags, out ret);
            return(ret);
        }
Esempio n. 2
0
        public static void ToMatrixf(Pose3 pose, MatrixConventionsFlags flags, out Matrix44f matrix)
#endif
        {
            MatrixConventionsNative.osvrPose3ToMatrixf(ref pose, flags, out matrix);
        }