mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 08:37:19 +08:00
59 lines
1.5 KiB
C#
59 lines
1.5 KiB
C#
using CPF.Drawing;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace xss_pro.Base
|
|
{
|
|
public class PolylineBuilder
|
|
{
|
|
private Point _firstPoint;
|
|
private Point _lastPoint;
|
|
private List<Point> _points;
|
|
public PolylineBuilder(Point startPoint)
|
|
{
|
|
_points = new List<Point>();
|
|
_points.Add(startPoint);
|
|
_lastPoint = startPoint;
|
|
_firstPoint = startPoint;
|
|
}
|
|
public IEnumerable<Point> Points => _points;
|
|
public PolylineBuilder GoUp(float distance)
|
|
{
|
|
_lastPoint.Y -= distance;
|
|
_points.Add(_lastPoint);
|
|
return this;
|
|
}
|
|
public PolylineBuilder GoDown(float distance)
|
|
{
|
|
_lastPoint.Y += distance;
|
|
_points.Add(_lastPoint);
|
|
return this;
|
|
}
|
|
public PolylineBuilder GoLeft(float distance)
|
|
{
|
|
_lastPoint.X -= distance;
|
|
_points.Add(_lastPoint);
|
|
return this;
|
|
}
|
|
public PolylineBuilder GoRight(float distance)
|
|
{
|
|
_lastPoint.X += distance;
|
|
_points.Add(_lastPoint);
|
|
return this;
|
|
}
|
|
public PolylineBuilder GoPoint(Point point)
|
|
{
|
|
_lastPoint = point;
|
|
_points.Add(point);
|
|
return this;
|
|
}
|
|
public PolylineBuilder Close()
|
|
{
|
|
_lastPoint = _firstPoint;
|
|
_points.Add(_firstPoint);
|
|
return this;
|
|
}
|
|
}
|
|
}
|