Copy copy other to this bounding box. Returns pointer to this updated bounding box.
(other *Box3)
| 63 | // Copy copy other to this bounding box. |
| 64 | // Returns pointer to this updated bounding box. |
| 65 | func (b *Box3) Copy(other *Box3) *Box3 { |
| 66 | |
| 67 | b.Min = other.Min |
| 68 | b.Max = other.Max |
| 69 | return b |
| 70 | } |
| 71 | |
| 72 | // MakeEmpty set this bounding box to empty. |
| 73 | // Returns pointer to this updated bounding box. |
no outgoing calls
no test coverage detected