 | CPJProjectBoundingRectangle2 Method |
Project a bounding rectangle with error tolerance.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void ProjectBoundingRectangle2(
ref double min_x,
ref double min_y,
ref double max_x,
ref double max_y,
double err
)
public void ProjectBoundingRectangle2(
ref double min_x,
ref double min_y,
ref double max_x,
ref double max_y,
double err
)
Public Sub ProjectBoundingRectangle2 (
ByRef min_x As Double,
ByRef min_y As Double,
ByRef max_x As Double,
ByRef max_y As Double,
err As Double
)
Public Sub ProjectBoundingRectangle2 (
ByRef min_x As Double,
ByRef min_y As Double,
ByRef max_x As Double,
ByRef max_y As Double,
err As Double
)
public:
void ProjectBoundingRectangle2(
double% min_x,
double% min_y,
double% max_x,
double% max_y,
double err
)
public:
void ProjectBoundingRectangle2(
double% min_x,
double% min_y,
double% max_x,
double% max_y,
double err
)
member ProjectBoundingRectangle2 :
min_x : float byref *
min_y : float byref *
max_x : float byref *
max_y : float byref *
err : float -> unit
member ProjectBoundingRectangle2 :
min_x : float byref *
min_y : float byref *
max_x : float byref *
max_y : float byref *
err : float -> 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 - err
- Type: SystemDouble
Maximum allowable projection error if <= 0.0, will use 0.005% of smallest dimension
Remarks
This is the same as ProjectBoundingRectangle_PJ except that the bounding
rectangle will be limited to an area within which the projection can be
performed to an accuracy better than the specified error tolerance.
See Also