//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; }
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; }
//Construtor Folha / Leaf constructor public Node(TrianguloDelaunay valor, Node nodeF) { Node(valor, nodeF, null, null) }
//Construtor Raiz com 2 Nodes / Root constructor with 2 Nodes public Node(TrianguloDelaunay valor, Node nodeR, Node nodeL) { Node(valor, null, nodeR, nodeL); }
//Construtor de Node com 1 Nodes / Node construcutor with 1 Nodes public Node(TrianguloDelaunay valor, Node nodeF, Node nodeR) { Node(valor, nodeF, nodeR, null); }