123456789101112131415161718192021222324252627 |
- using System;
- using System.Windows.Controls;
- using System.Windows.Media;
- using System.Windows.Shapes;
- namespace GraphDrawer
- {
- public class Vertex
- {
- public int X { get; set; }
- public int Y { get; set; }
- public int edgeCount { get; set; }
- public Vertex(int x, int y, int edgeCount)
- {
- X = x;
- Y = y;
- this.edgeCount = edgeCount;
- }
- public Vertex(int x, int y)
- {
- X = x;
- Y = y;
- }
- }
- }
|