public XbimMatrix3D WorldMatrix()
 {
     if (_parent != null)
     {
         return(_localMatrix * _parent.WorldMatrix());
     }
     else
     {
         return(_localMatrix);
     }
 }