 | CLAYOUTCalculateRects Method |
Calculate new positions based on initial conditions and constraints
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void CalculateRects(
ref double min_x,
ref double min_y,
ref double max_x,
ref double max_y
)
public void CalculateRects(
ref double min_x,
ref double min_y,
ref double max_x,
ref double max_y
)
Public Sub CalculateRects (
ByRef min_x As Double,
ByRef min_y As Double,
ByRef max_x As Double,
ByRef max_y As Double
)
Public Sub CalculateRects (
ByRef min_x As Double,
ByRef min_y As Double,
ByRef max_x As Double,
ByRef max_y As Double
)
public:
void CalculateRects(
double% min_x,
double% min_y,
double% max_x,
double% max_y
)
public:
void CalculateRects(
double% min_x,
double% min_y,
double% max_x,
double% max_y
)
member CalculateRects :
min_x : float byref *
min_y : float byref *
max_x : float byref *
max_y : float byref -> unit
member CalculateRects :
min_x : float byref *
min_y : float byref *
max_x : float byref *
max_y : float byref -> unit
Parameters
- min_x
- Type: SystemDouble
Parent Rectangle Min X after calculation - min_y
- Type: SystemDouble
Parent Rectangle Min Y after calculation - max_x
- Type: SystemDouble
Parent Rectangle Max X after calculation - max_y
- Type: SystemDouble
Parent Rectangle Max Y after calculation
Remarks
Use iGetRectangle to obtain the results for the other rectangles. Depending
on the constraints set the parent rectangle may also change
after the calculation (returned here for convenience).
See Also