LayoutRect rect(0, 0, 100, 100); // Create a rectangle at (0,0) with width and height of 100
LayoutRect rect = someView->getBounds(); // Get the bounds of a view and assign it to a LayoutRect rect.setLocation(50, 50); // Move the rectangle to (50,50)These examples use LayoutRect in the context of a UI layout, so it is likely that the package library is related to GUI programming such as Qt, wxWidgets, or WinAPI.