Geotools.Net

Geometry.Buffer Method 

Returns a buffer region around this Geometry having the given width. The buffer of a Geometry is the Minkowski sum of the Geometry with a disc of radius distance.

[Visual Basic]
Overridable Public Function Buffer( _
   ByVal distance As Double _
) As Geometry Implements _
   IGeometry.Buffer
[C#]
public virtual Geometry Buffer(
   double distance
);

Parameters

distance
The width of the buffer, interpreted according to the PrecisionModel of the Geometry.

Return Value

Returns all points whose distance from this Geometry are less than or equal to distance.

Implements

IGeometry.Buffer

Remarks

Missing <remarks> documentation for M:Geotools.Geometries.Geometry.Buffer(System.Double)

See Also

Geometry Class | Geometry Members | Geotools.Geometries Namespace