Ejemplo n.º 1
0
 private void AddVertex(IVertexDest vc, double x, double y)
 {
     vc.Add(new PointD(x, y));
 }
Ejemplo n.º 2
0
 private void AddVertex(IVertexDest vc, double x, double y)
 {
     vc.Add(new PointD(x, y));
 }
Ejemplo n.º 3
0
 private void AddVertex(IVertexDest <T> vc, T x, T y)
 {
     vc.Add(MatrixFactory <T> .CreateVector2D(x, y));
 }