It is necessary to write an application in C # that allows the user to define a metric graph (all edges are oriented in any direction and have a length, there are multiple edges, that is, several edges between the same pair of vertices, there are loops, that is, an edge from vertex to itself ), that is, mark points on the plane, connect some of them and indicate the lengths of the edges. The output should be a file in which you specify:
- The size of the work area (you can also change it)
- Vertex coordinates
- A list of edges with their lengths and an indication of the vertices that they connect
It seems that I could not find a normal library that can satisfy my needs, so, apparently, I have to write it myself. My skills in designing graphic applications are limited to creating not very complex WinForms applications, so I ask you to give me a direction to learn (perhaps there is something in WPF that can help me).
