Create a new curve and mark it finished


Namespace: PalmSens
Assembly: PalmSens (in PalmSens.dll)

Syntax

Visual Basic (Declaration)
Public Sub New( _ 
   ByVal method As Method,  _ 
   ByVal npoints As Integer,  _ 
   ByVal x As Single(),  _ 
   ByVal y As Single() _ 
)
C#
public Curve(
   Method method,
   int npoints,
   float[] x,
   float[] y
)
C++
public:
 Curve(
   Method method,
   int npoints,
   array<float>^ x,
   array<float>^ y
) sealed 
J#
public Curve(
   Method method,
   int npoints,
   float[] x,
   float[] y
)
JScript
public function Curve(
   method : Method,
   npoints : int,
   x : float[],
   y : float[]
)

Parameters

method
method to use
npoints
number of points in curve
x
array of X points
y
array of Y points

See Also