Example #1
0
		public void Update( Joint other )
		{
			if(this.name != other.name) throw new Exception("Attempt to update joint with different name");
			this.tr = other.tr;
			this.ro = other.ro;
		}
Example #2
0
		public void AddJoint( Joint j )   { joints.Add (j); }