BEPUutilities.AffineTransform.AffineTransform C# (CSharp) Метод

AffineTransform() публичный Метод

Constructs a new affine transform.
public AffineTransform ( Matrix3x3 linearTransform, Vector3 translation ) : Microsoft.Xna.Framework
linearTransform Matrix3x3 The linear transform component.
translation Vector3 Translation component of the transform.
Результат Microsoft.Xna.Framework
        public AffineTransform(Matrix3x3 linearTransform, Vector3 translation)
        {
            LinearTransform = linearTransform;
            Translation = translation;

        }

Same methods

AffineTransform::AffineTransform ( Quaternion orientation, Vector3 translation ) : Microsoft.Xna.Framework
AffineTransform::AffineTransform ( Vector3 translation ) : Microsoft.Xna.Framework
AffineTransform::AffineTransform ( Vector3 scaling, Quaternion orientation, Vector3 translation ) : Microsoft.Xna.Framework