public bool sharesEdge(CTri t) { bool ret = false; uint count = 0; if (t.hasIndex(mI1)) { count++; } if (t.hasIndex(mI2)) { count++; } if (t.hasIndex(mI3)) { count++; } if (count >= 2) { ret = true; } return(ret); }
public bool sharesEdge(CTri t) { bool ret = false; uint count = 0; if (t.hasIndex(mI1)) count++; if (t.hasIndex(mI2)) count++; if (t.hasIndex(mI3)) count++; if (count >= 2) ret = true; return ret; }