HomeSort by relevance Sort by last modified time
    Searched refs:ptCenter (Results 1 - 6 of 6) sorted by null

  /external/pdfium/fpdfsdk/src/pdfwindow/
PWL_ScrollBar.cpp 175 CPDF_Point ptCenter = this->GetCenterPoint();
184 CPDF_Point pt1(ptCenter.x - PWL_TRIANGLE_HALFLEN * 0.5f,ptCenter.y);
185 CPDF_Point pt2(ptCenter.x + PWL_TRIANGLE_HALFLEN * 0.5f,ptCenter.y + PWL_TRIANGLE_HALFLEN);
186 CPDF_Point pt3(ptCenter.x + PWL_TRIANGLE_HALFLEN * 0.5f,ptCenter.y - PWL_TRIANGLE_HALFLEN);
203 CPDF_Point pt1(ptCenter.x + PWL_TRIANGLE_HALFLEN * 0.5f,ptCenter.y);
204 CPDF_Point pt2(ptCenter.x - PWL_TRIANGLE_HALFLEN * 0.5f,ptCenter.y + PWL_TRIANGLE_HALFLEN);
    [all...]
PWL_ComboBox.cpp 124 CPDF_Point ptCenter = this->GetCenterPoint();
126 CPDF_Point pt1(ptCenter.x - PWL_CBBUTTON_TRIANGLE_HALFLEN,ptCenter.y + PWL_CBBUTTON_TRIANGLE_HALFLEN * 0.5f);
127 CPDF_Point pt2(ptCenter.x + PWL_CBBUTTON_TRIANGLE_HALFLEN,ptCenter.y + PWL_CBBUTTON_TRIANGLE_HALFLEN * 0.5f);
128 CPDF_Point pt3(ptCenter.x,ptCenter.y - PWL_CBBUTTON_TRIANGLE_HALFLEN * 0.5f);
154 CPDF_Point ptCenter = this->GetCenterPoint();
156 CPDF_Point pt1(ptCenter.x - PWL_CBBUTTON_TRIANGLE_HALFLEN,ptCenter.y + PWL_CBBUTTON_TRIANGLE_HALFLEN * 0.5f);
    [all...]
PWL_Utils.cpp 318 CPDF_Point ptCenter = CPDF_Point((crBBox.left + crBBox.right) / 2.0f,(crBBox.top + crBBox.bottom) / 2.0f);
326 px[i] = ptCenter.x + fRadius * (FX_FLOAT)cos(fAngel);
327 py[i] = ptCenter.y + fRadius * (FX_FLOAT)sin(fAngel);
411 CPDF_Point ptCenter = CPDF_Point((rcRect.left + rcRect.right) / 2,(rcRect.top + rcRect.bottom) / 2);
413 return CPDF_Rect(ptCenter.x - fHalfWidth * fScale,
414 ptCenter.y - fHalfHeight * fScale,
415 ptCenter.x + fHalfWidth * fScale,
416 ptCenter.y + fHalfHeight * fScale);
    [all...]
PWL_Note.cpp 95 CPDF_Point ptCenter = CPDF_Point((rcClient.left + rcClient.right) * 0.5f, (rcClient.top + rcClient.bottom) * 0.5f);
97 CPDF_Point pt1(ptCenter.x - 2.0f, ptCenter.y + 2.0f * 0.5f);
98 CPDF_Point pt2(ptCenter.x + 2.0f, ptCenter.y + 2.0f * 0.5f);
99 CPDF_Point pt3(ptCenter.x, ptCenter.y - 3.0f * 0.5f);
    [all...]
  /external/opencv/cvaux/src/
cvvecfacetracking.cpp 83 CvPoint ptCenter;
146 face[i].ptCenter = Center(face[i].r);
147 ptTempl[i] = face[i].ptCenter;
164 ptRotate = face[MOUTH].ptCenter;
320 cr.ptCenter = Center(cr.r);
330 cr.ptCenter = Center(cr.r);
357 if (abs(pRect1->ptCenter.y - pRect2->ptCenter.y) < d &&
368 rNew.ptCenter = Center(rNew.r);
474 double dx = pFaceTracker->face[LEYE].ptCenter.x - pFaceTracker->face[REYE].ptCenter.x
    [all...]
  /external/pdfium/core/src/fpdfdoc/
doc_ap.cpp 524 CPDF_Point ptCenter = CPDF_Point((rcButton.left + rcButton.right) / 2, (rcButton.top + rcButton.bottom) / 2);
527 sAppStream << ptCenter.x - 3 << " " << ptCenter.y + 1.5f << " m\n";
528 sAppStream << ptCenter.x + 3 << " " << ptCenter.y + 1.5f << " l\n";
529 sAppStream << ptCenter.x << " " << ptCenter.y - 1.5f << " l\n";
530 sAppStream << ptCenter.x - 3 << " " << ptCenter.y + 1.5f << " l f\n";
    [all...]

Completed in 346 milliseconds