Lines Matching defs:cp2
367 Geom::Point cp1=0.333333*(p_s+2*p_m),cp2=0.333333*(2*p_m+p_e);
370 gdouble x2=cp2[0];
371 gdouble y2=cp2[1];
867 Path::cut_position *cp2=(Path::cut_position*)p2;
868 if ( cp1->piece < cp2->piece ) return -1;
869 if ( cp1->piece > cp2->piece ) return 1;
870 if ( cp1->t < cp2->t ) return -1;
871 if ( cp1->t > cp2->t ) return 1;
876 double *cp2=(double*)p2;
877 if ( *cp1 < *cp2 ) return -1;
878 if ( *cp1 > *cp2 ) return 1;