Vertex.cs 252 B

1234567891011121314
  1. namespace PaintDotNet.SystemLayer.GpcWrapper
  2. {
  3. internal struct Vertex
  4. {
  5. public double X;
  6. public double Y;
  7. public Vertex(double x, double y)
  8. {
  9. this.X = x;
  10. this.Y = y;
  11. }
  12. }
  13. }