- Fix link resolution with proper relative/absolute path handling - Improve link styling with underline decoration - Hide leaf nodes from tree, only show directories - Fix log file path for packaged app
367 B
367 B
Rect::Set
void Set(float newX, float newY, float newWidth, float newHeight)
设置矩形所有属性。
参数:
newX- 新的左边界newY- 新的上边界newWidth- 新的宽度newHeight- 新的高度
返回: void
复杂度: O(1)
示例:
Rect rect;
rect.Set(10.0f, 20.0f, 100.0f, 50.0f);