当前位置: 代码迷 >> .NET Framework >> C#依据公式绘制曲线
  详细解决方案

C#依据公式绘制曲线

热度:276   发布时间:2016-05-02 01:06:25.0
C#根据公式绘制曲线
哪位知道如何根据公式绘制一条曲线啊?就比如抛物线……

------解决方案--------------------
public class Curve : Shape
{
public List<Point> Points;
public Curve(Color c)
: base(c)
{
Points = new List<Point>();
}
public void AddPoint(Point p)
{
Points.Add(p);
}
public override void Draw(Graphics g)
{
if (Points.Count >= 2)
g.DrawCurve(new Pen(clr), Points.ToArray());
}
}
  相关解决方案