An NDoc Documented Class Library

Curve.Value Method 

This abstract method must be overridden. He returns the function for a value t.

public xy Value(double t){
return new xy(cos(t), sin(t));
}
public xy Drivation(double t){
return new xy(-sin(t), cos(t));
}
This sample implements an unitcircle.

public abstract xy Value(
   double t
);

Parameters

t
parameter for the function Value

Return Value

Value of the curvedefining function

See Also

Curve Class | Minais.Drawing3d.Curves Namespace | Derivation