| 76 | } |
| 77 | |
| 78 | void BoxBrush::SetSize(const Vector3& value) |
| 79 | { |
| 80 | if (value == _size) |
| 81 | return; |
| 82 | |
| 83 | _size = value; |
| 84 | |
| 85 | // Fire events |
| 86 | UpdateBounds(); |
| 87 | OnBrushModified(); |
| 88 | } |
| 89 | |
| 90 | void BoxBrush::GetSurfaces(CSG::Surface surfaces[6]) |
| 91 | { |
nothing calls this directly
no test coverage detected