Lines Matching defs:to
10 * that structure is very sensitive to anything
75 // we want to order with respect to the order of intersections with the sweepline, currently
90 // rotate to get the normal to the edge
96 // compute (px-orig)^dir to know on which side of this edge the point px lies
105 // that damn point px lies on me, so i need to consider to direction of the edge in
106 // newOne to know if it goes toward my left side or my right side
310 // get a set of edge that are to be added in the same position. thus you insert one edge with a regular insert(),
312 // where d is the number of edge to add in this fashion. hopefully d remains small
470 SweepTree::Relocate(SweepTree * to)
472 if (this == to)
474 AVLTree::Relocate(to);
475 to->src = src;
476 to->bord = bord;
477 to->sens = sens;
478 to->evt[LEFT] = evt[LEFT];
479 to->evt[RIGHT] = evt[RIGHT];
480 to->startPoint = startPoint;
482 src->swsData[bord].misc = to;
484 src->swrData[bord].misc = to;
486 evt[LEFT]->sweep[RIGHT] = to;
488 evt[RIGHT]->sweep[LEFT] = to;