Mckineap.Models.Model3D.Editing.Keyframe.Keyframe C# (CSharp) Method

Keyframe() public method

public Keyframe ( double timeAnim, Matrix4x4 newLocalTransformation ) : System
timeAnim double
newLocalTransformation Matrix4x4
return System
        public Keyframe(double timeAnim, Matrix4x4 newLocalTransformation)
        {
            oldLocalTransformation = curLocalTransformation;
            curLocalTransformation = newLocalTransformation;
            this.timeAnim = timeAnim;
        }
    }
Keyframe