Esempio n. 1
0
 public static IGaTreeMultivectorNode GetChild(this IGaTreeMultivectorNode mv, int index)
 {
     return((index & 1) == 0
         ? mv.GetRightChild()
         : mv.GetLeftChild());
 }