Axiom.Animating.AttachmentPoint.AttachmentPoint C# (CSharp) Method

AttachmentPoint() public method

public AttachmentPoint ( string name, string parentBone, Axiom.MathLib.Quaternion orientation, Vector3 position ) : System
name string
parentBone string
orientation Axiom.MathLib.Quaternion
position Vector3
return System
		public AttachmentPoint( string name, string parentBone, Quaternion orientation, Vector3 position )
		{
			this.name = name;
			this.parentBone = parentBone;
			this.orientation = orientation;
			this.position = position;
		}
AttachmentPoint