C# Class SharpMap.Geometries.Curve

A Curve is a one-dimensional geometric object usually stored as a sequence of points, with the subtype of Curve specifying the form of the interpolation between points.
Inheritance: Geometry
ファイルを表示 Open project: jumpinjackie/fdotoolbox

Public Methods

Method Description
Value ( double t ) : System.Point

The position of a point on the line, parameterised by length.

Method Details

Value() public abstract method

The position of a point on the line, parameterised by length.
public abstract Value ( double t ) : System.Point
t double
return System.Point