Beispiel #1
0
 //Construtores / Constructors
 //Construtor de Node completo / Full Node constructor
 public Node(TrianguloDelaunay valor, Node nodeF, Node nodeR, Node nodeL)
 {
     this.Valor = valor;
     this.NodeR = nodeR;
     this.NodeL = nodeL;
     this.NodeF = nodeF;
 }
Beispiel #2
0
        public Node NodeD; // node adcional (Node down) / addictional node (Node down)

        #endregion Fields

        #region Constructors

        //Construtores / Constructors
        public Root(TrianguloDelaunay valor)
        {
            Node(valor);
            NodeD = null;
        }
Beispiel #3
0
 //Construtor Folha / Leaf constructor
 public Node(TrianguloDelaunay valor, Node nodeF)
 {
     Node(valor, nodeF, null, null)
 }
Beispiel #4
0
 //Construtor Raiz com 2 Nodes / Root constructor with 2 Nodes
 public Node(TrianguloDelaunay valor, Node nodeR, Node nodeL)
 {
     Node(valor, null, nodeR, nodeL);
 }
Beispiel #5
0
 //Construtor de Node com 1 Nodes / Node construcutor with 1 Nodes
 public Node(TrianguloDelaunay valor, Node nodeF, Node nodeR)
 {
     Node(valor, nodeF, nodeR, null);
 }