| 64 | } |
| 65 | |
| 66 | void BoxBrush::SetCenter(const Vector3& value) |
| 67 | { |
| 68 | if (value == _center) |
| 69 | return; |
| 70 | |
| 71 | _center = value; |
| 72 | |
| 73 | // Fire events |
| 74 | UpdateBounds(); |
| 75 | OnBrushModified(); |
| 76 | } |
| 77 | |
| 78 | void BoxBrush::SetSize(const Vector3& value) |
| 79 | { |
nothing calls this directly
no test coverage detected