public static void DrawBounds(ref Bounds b, Color color) { DrawFilledBox(b.center, b.size, color); }
public void Encapsulate(Bounds bounds) { box = BoundingBox.CreateMerged(box, bounds.box); _boundingSphere = null; }
public bool Intersects(Bounds b) { // TODO : Add implementation of method throw new NotImplementedException("Method not implemented."); }
public void RecalculateBounds() { bounds = new Bounds(); bounds.Encapsulate(_vertices); }