Reign.Video.Abstraction.InstanceBone.InstanceBone C# (CSharp) Method

InstanceBone() public method

public InstanceBone ( Bone bone ) : System.Collections.Generic
bone Bone
return System.Collections.Generic
        public InstanceBone(Bone bone)
        {
            Bone = bone;
            Position = bone.Position;
            RotationMatrix = bone.RotationMatrix;
            Childeren = new List<InstanceBone>();
        }