Ejemplo n.º 1
0
        public static Matrix44d ToMatrixd(Pose3 pose, MatrixConventionsFlags flags)
#endif
        {
            Matrix44d ret;

            MatrixConventionsNative.osvrPose3ToMatrixd(ref pose, flags, out ret);
            return(ret);
        }
Ejemplo n.º 2
0
        public static void ToMatrixd(Pose3 pose, MatrixConventionsFlags flags, out Matrix44d matrix)
#endif
        {
            MatrixConventionsNative.osvrPose3ToMatrixd(ref pose, flags, out matrix);
        }