Home | History | Annotate | Download | only in Intersection

Lines Matching refs:Vtemp

433     Point2     Vtemp[W_DEGREE+1][W_DEGREE+1];
438 Vtemp[0][j] = V[j];
444 Vtemp[i][j].x =
445 (1.0 - t) * Vtemp[i-1][j].x + t * Vtemp[i-1][j+1].x;
446 Vtemp[i][j].y =
447 (1.0 - t) * Vtemp[i-1][j].y + t * Vtemp[i-1][j+1].y;
453 Left[j] = Vtemp[j][0];
458 Right[j] = Vtemp[degree-j][j];
462 return (Vtemp[degree][0]);