using System; namespace Science.Mathematics.VectorCalculus { public class Path { private Function.ToLastType c; public Function.ToLastType Map { get { return c; } set { c = value; } } public Path(Function.ToLastType map) { c = map; } private double start, end; public double ParameterFrom { get{return start;} set{start=value;} } public double ParameterTo { get{return end;} set{end=value;} } } }