public bool intersect(FixedAABB2D aabb) { if (aabb.m_Max.x >= aabb.m_Min.x && aabb.m_Min.x <= m_Max.x && aabb.m_Max.y >= m_Min.y && aabb.m_Min.y <= m_Max.y) { return(true); } else { return(false); } }
public void getAABB2D(ref FixedAABB2D aabb) { aabb.update(center.x, center.z, size.x / 2, size.z / 2); }