BufferWithCurves (geometry)#
Returns a geometry instance that represents the set of all points whose distance from the calling geometry instance is less than or equal to the distance parameter.
Syntax#
.BufferWithCurves ( distance )
Arguments#
distance
Is a float indicating the maximum distance that points forming the buffer can be from the geometry instance.
Return type#
geometry
Exceptions#
The following criteria will throw an ArgumentException.
No parameter is passed to the method, such as @g.BufferWithCurves()
A non-numeric parameter is passed to the method, such as @g.BufferWithCurves(‘a’)
NULL is passed to the method, such as @g.BufferWithCurves(NULL)