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