Click or drag to resize
IGeGeometryBuffer Method
Returns buffer of the geometry, using specified offset distance. Provides optional parameters for curve approximation segments and buffer's end cap style.

Namespace: FDF.Common.Geometries
Assembly: FDF.Common (in FDF.Common.dll) Version: 3.0.0.0
Syntax
IGeGeometry Buffer(
	GeLength distance,
	int quadrantSegments = 8,
	GeBufferStyle endCapStyle = GeBufferStyle.Round
)

Parameters

distance
Type: FDF.Common.GeometriesGeLength
Buffer radius.
quadrantSegments (Optional)
Type: SystemInt32
Number of segments used to approximate curves (default is 8).
endCapStyle (Optional)
Type: FDF.Common.GeometriesGeBufferStyle
End cap style to use when computing a buffer (default is Round).

Return Value

Type: IGeGeometry
Remarks
Geometry buffer is the Minkowski sum or difference of the geometry with a disc of specified radius.
See Also