 | CPJProjectBoundingRectangle Method |
Project a bounding rectangle.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void ProjectBoundingRectangle(
ref double min_x,
ref double min_y,
ref double max_x,
ref double max_y
)
public void ProjectBoundingRectangle(
ref double min_x,
ref double min_y,
ref double max_x,
ref double max_y
)
Public Sub ProjectBoundingRectangle (
ByRef min_x As Double,
ByRef min_y As Double,
ByRef max_x As Double,
ByRef max_y As Double
)
Public Sub ProjectBoundingRectangle (
ByRef min_x As Double,
ByRef min_y As Double,
ByRef max_x As Double,
ByRef max_y As Double
)
public:
void ProjectBoundingRectangle(
double% min_x,
double% min_y,
double% max_x,
double% max_y
)
public:
void ProjectBoundingRectangle(
double% min_x,
double% min_y,
double% max_x,
double% max_y
)
member ProjectBoundingRectangle :
min_x : float byref *
min_y : float byref *
max_x : float byref *
max_y : float byref -> unit
member ProjectBoundingRectangle :
min_x : float byref *
min_y : float byref *
max_x : float byref *
max_y : float byref -> unit
Parameters
- min_x
- Type: SystemDouble
Bounding Region Min X - min_y
- Type: SystemDouble
Bounding Region Min Y - max_x
- Type: SystemDouble
Bounding Region Max X - max_y
- Type: SystemDouble
Bounding Region Max Y
Remarks
A rectangular area from (dMinX, dMinY) to (dMaxX, dMaxY)
is projected throught the PJ. The resulting region area is
then digitized along its edges and a new bounding rectangle
is computed. If there is a lot of curve through the
projection the resulting bounding region may be slightly
smaller than the true region.
See Also