SetFromVectors() public méthode

public SetFromVectors ( Vec3 vx, Vec3 vy, Vec3 vz ) : void
vx Vec3
vy Vec3
vz Vec3
Résultat void
Exemple #1
0
        public static Matrix33 CreateFromVectors(Vec3 vx, Vec3 vy, Vec3 vz)
        {
            var matrix = new Matrix33();

            matrix.SetFromVectors(vx, vy, vz);

            return(matrix);
        }
        public static Matrix33 CreateFromVectors(Vec3 vx, Vec3 vy, Vec3 vz)
        {
            var matrix = new Matrix33();
            matrix.SetFromVectors(vx, vy, vz);

            return matrix;
        }