 | CPJProjectLimitedBoundingRectangle Method |
Project a bounding rectangle with limits.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void ProjectLimitedBoundingRectangle(
double min_xl,
double min_yl,
double max_xl,
double max_yl,
ref double min_x,
ref double min_y,
ref double max_x,
ref double max_y
)
public void ProjectLimitedBoundingRectangle(
double min_xl,
double min_yl,
double max_xl,
double max_yl,
ref double min_x,
ref double min_y,
ref double max_x,
ref double max_y
)
Public Sub ProjectLimitedBoundingRectangle (
min_xl As Double,
min_yl As Double,
max_xl As Double,
max_yl As Double,
ByRef min_x As Double,
ByRef min_y As Double,
ByRef max_x As Double,
ByRef max_y As Double
)
Public Sub ProjectLimitedBoundingRectangle (
min_xl As Double,
min_yl As Double,
max_xl As Double,
max_yl As Double,
ByRef min_x As Double,
ByRef min_y As Double,
ByRef max_x As Double,
ByRef max_y As Double
)
public:
void ProjectLimitedBoundingRectangle(
double min_xl,
double min_yl,
double max_xl,
double max_yl,
double% min_x,
double% min_y,
double% max_x,
double% max_y
)
public:
void ProjectLimitedBoundingRectangle(
double min_xl,
double min_yl,
double max_xl,
double max_yl,
double% min_x,
double% min_y,
double% max_x,
double% max_y
)
member ProjectLimitedBoundingRectangle :
min_xl : float *
min_yl : float *
max_xl : float *
max_yl : float *
min_x : float byref *
min_y : float byref *
max_x : float byref *
max_y : float byref -> unit
member ProjectLimitedBoundingRectangle :
min_xl : float *
min_yl : float *
max_xl : float *
max_yl : float *
min_x : float byref *
min_y : float byref *
max_x : float byref *
max_y : float byref -> unit
Parameters
- min_xl
- Type: SystemDouble
Output limited bounding region Min X - min_yl
- Type: SystemDouble
Min Y - max_xl
- Type: SystemDouble
Max X - max_yl
- Type: SystemDouble
Max Y - min_x
- Type: SystemDouble
Bounding Region Min X - min_y
- Type: SystemDouble
Min Y - max_x
- Type: SystemDouble
Max X - max_y
- Type: SystemDouble
Max Y
Remarks
The bounding rectangle will be limited to no larger
than the area specified in the output projection. This
is useful when projecting from limits that are unreasonable
in the target projection.
See Also