Generates points on a raster.

Namespace:  ceometric.ComputationalGeometry
Assembly:  ceometric.ComputationalGeometry (in ceometric.ComputationalGeometry.dll) Version: 2.4.0.0 (2.4.0.0)

Syntax

C#
public PointSet GenerateRaster(
	double xSpacing,
	double ySpacing
)
Visual Basic (Declaration)
Public Function GenerateRaster ( _
	xSpacing As Double, _
	ySpacing As Double _
) As PointSet
Visual C++
public:
PointSet^ GenerateRaster(
	double xSpacing, 
	double ySpacing
)

Parameters

xSpacing
Type: System..::.Double
The raster spacing in x-direction.
ySpacing
Type: System..::.Double
The raster spacing in y-direction.

Return Value

Returns a raster over the extents of the triangulation.

Remarks

x and y spacing are fixed values.

See Also