Praeclarum.Graphics.Polygon.AddPoint C# (CSharp) Метод

AddPoint() публичный Метод

public AddPoint ( float x, float y ) : void
x float
y float
Результат void
		public void AddPoint(float x, float y)
		{
			Points.Add (new PointF (x, y));
			Version++;
		}

Usage Example

Пример #1
0
 public static void AddPoint(this Polygon poly, PointF p)
 {
     poly.AddPoint(p.X, p.Y);
 }