public bool IntersectsOBB(OBB otherOBB)
 {
     return(BoxMath.BoxIntersectsBox(_center, _size, _rotation, otherOBB.Center, otherOBB.Size, otherOBB.Rotation));
 }