Click or drag to resize

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
Syntax
public 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
)

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