Exemplo n.º 1
0
 public LineSLT(VertexSLT V1, VertexSLT V2)
 {
     this.V1 = V1;
     this.V2 = V2;
 }
Exemplo n.º 2
0
 public void Trasladar(VertexSLT T)
 {
     V1.Trasladar(T);
     V2.Trasladar(T);
 }
Exemplo n.º 3
0
 public LineSLT()
 {
     V1 = new VertexSLT();
     V2 = new VertexSLT();
 }