Mckineap.Models.Model3D.Editing.Keyframe.Keyframe C# (CSharp) 메소드

Keyframe() 공개 메소드

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