Home
last modified time | relevance | path

Searched refs:aP2 (Results 1 – 25 of 290) sorted by relevance

12345678910>>...12

/dports/www/firefox-esr/firefox-91.8.0/dom/svg/
H A DSVGPoint.h63 inline SVGPoint operator+(const SVGPoint& aP1, const SVGPoint& aP2) {
64 return SVGPoint(aP1.mX + aP2.mX, aP1.mY + aP2.mY);
67 inline SVGPoint operator-(const SVGPoint& aP1, const SVGPoint& aP2) {
68 return SVGPoint(aP1.mX - aP2.mX, aP1.mY - aP2.mY);
/dports/lang/spidermonkey78/firefox-78.9.0/dom/svg/
H A DSVGPoint.h63 inline SVGPoint operator+(const SVGPoint& aP1, const SVGPoint& aP2) {
64 return SVGPoint(aP1.mX + aP2.mX, aP1.mY + aP2.mY);
67 inline SVGPoint operator-(const SVGPoint& aP1, const SVGPoint& aP2) {
68 return SVGPoint(aP1.mX - aP2.mX, aP1.mY - aP2.mY);
/dports/www/firefox/firefox-99.0/dom/svg/
H A DSVGPoint.h63 inline SVGPoint operator+(const SVGPoint& aP1, const SVGPoint& aP2) {
64 return SVGPoint(aP1.mX + aP2.mX, aP1.mY + aP2.mY);
67 inline SVGPoint operator-(const SVGPoint& aP1, const SVGPoint& aP2) {
68 return SVGPoint(aP1.mX - aP2.mX, aP1.mY - aP2.mY);
/dports/mail/thunderbird/thunderbird-91.8.0/dom/svg/
H A DSVGPoint.h63 inline SVGPoint operator+(const SVGPoint& aP1, const SVGPoint& aP2) {
64 return SVGPoint(aP1.mX + aP2.mX, aP1.mY + aP2.mY);
67 inline SVGPoint operator-(const SVGPoint& aP1, const SVGPoint& aP2) {
68 return SVGPoint(aP1.mX - aP2.mX, aP1.mY - aP2.mY);
/dports/www/firefox-legacy/firefox-52.8.0esr/dom/svg/
H A DSVGPoint.h93 const SVGPoint& aP2)
95 return SVGPoint(aP1.mX + aP2.mX, aP1.mY + aP2.mY);
99 const SVGPoint& aP2)
101 return SVGPoint(aP1.mX - aP2.mX, aP1.mY - aP2.mY);
/dports/lang/spidermonkey60/firefox-60.9.0/dom/svg/
H A DSVGPoint.h71 inline SVGPoint operator+(const SVGPoint& aP1, const SVGPoint& aP2) {
72 return SVGPoint(aP1.mX + aP2.mX, aP1.mY + aP2.mY);
75 inline SVGPoint operator-(const SVGPoint& aP1, const SVGPoint& aP2) {
76 return SVGPoint(aP1.mX - aP2.mX, aP1.mY - aP2.mY);
/dports/cad/opencascade/opencascade-7.6.0/samples/mfc/standard/Common/
H A DLengthParamsVerticesPage.cpp98 gp_Pnt aP2=BRep_Tool::Pnt (mySecondVertex); in OnBnClickedVertex2Btn() local
99 gp_Pnt aP3 (aP2.X() + 10, aP2.Y() + 10, aP2.Z() + 10); in OnBnClickedVertex2Btn()
101 GC_MakePlane aMkPlane (aP1,aP2,aP3); in OnBnClickedVertex2Btn()
106 Handle(PrsDim_LengthDimension) aLenDim = new PrsDim_LengthDimension (aP1, aP2, aPlane->Pln()); in OnBnClickedVertex2Btn()
H A DLengthParamsEdgePage.cpp86 gp_Pnt aP2 = BRep_Tool::Pnt (aSecondVertex); in OnBnClickedChooseEdgeBtn() local
87 gp_Pnt aP3 (aP2.X() + 10, aP2.Y() + 10, aP2.Z() + 10); in OnBnClickedChooseEdgeBtn()
89 GC_MakePlane aMkPlane (aP1,aP2,aP3); in OnBnClickedChooseEdgeBtn()
/dports/x11/eaglemode/eaglemode-0.95.0/src/emCore/
H A DemPainter_ScTlPSInt_AVX2.cpp388 aP2=_mm256_add_epi16(aP2,_mm256_set1_epi16(0x80)); in CONCAT()
390 aP2=_mm256_add_epi16(aP2,_mm256_srli_epi16(aP2,8)); in CONCAT()
391 aP=_mm256_add_epi8(aP,aP2); in CONCAT()
631 aP2=_mm256_add_epi16(aP2,_mm256_set1_epi16(0x80)); in CONCAT()
633 aP2=_mm256_add_epi16(aP2,_mm256_srli_epi16(aP2,8)); in CONCAT()
634 aP=_mm256_add_epi8(aP,aP2); in CONCAT()
856 aP2=_mm256_add_epi16(aP2,_mm256_set1_epi16(0x80)); in CONCAT()
858 aP2=_mm256_add_epi16(aP2,_mm256_srli_epi16(aP2,8)); in CONCAT()
1110 aP2=_mm256_add_epi16(aP2,_mm256_set1_epi16(0x80)); in CONCAT()
1112 aP2=_mm256_add_epi16(aP2,_mm256_srli_epi16(aP2,8)); in CONCAT()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/gfx/2d/
H A DPathHelpers.cpp176 bool SnapLineToDevicePixelsForStroking(Point& aP1, Point& aP2, in SnapLineToDevicePixelsForStroking() argument
183 if (aP1.x != aP2.x && aP1.y != aP2.y) { in SnapLineToDevicePixelsForStroking()
187 Point p2 = aP2 + mat.GetTranslation(); in SnapLineToDevicePixelsForStroking()
194 aP2 = p2; in SnapLineToDevicePixelsForStroking()
198 if (aP1.x == aP2.x) { in SnapLineToDevicePixelsForStroking()
201 aP2 += Point(0.5, 0); in SnapLineToDevicePixelsForStroking()
205 aP2 += Point(0, 0.5); in SnapLineToDevicePixelsForStroking()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/2d/
H A DPathHelpers.cpp176 bool SnapLineToDevicePixelsForStroking(Point& aP1, Point& aP2, in SnapLineToDevicePixelsForStroking() argument
183 if (aP1.x != aP2.x && aP1.y != aP2.y) { in SnapLineToDevicePixelsForStroking()
187 Point p2 = aP2 + mat.GetTranslation(); in SnapLineToDevicePixelsForStroking()
194 aP2 = p2; in SnapLineToDevicePixelsForStroking()
198 if (aP1.x == aP2.x) { in SnapLineToDevicePixelsForStroking()
201 aP2 += Point(0.5, 0); in SnapLineToDevicePixelsForStroking()
205 aP2 += Point(0, 0.5); in SnapLineToDevicePixelsForStroking()
/dports/www/firefox/firefox-99.0/gfx/2d/
H A DPathHelpers.cpp176 bool SnapLineToDevicePixelsForStroking(Point& aP1, Point& aP2, in SnapLineToDevicePixelsForStroking() argument
183 if (aP1.x != aP2.x && aP1.y != aP2.y) { in SnapLineToDevicePixelsForStroking()
187 Point p2 = aP2 + mat.GetTranslation(); in SnapLineToDevicePixelsForStroking()
194 aP2 = p2; in SnapLineToDevicePixelsForStroking()
198 if (aP1.x == aP2.x) { in SnapLineToDevicePixelsForStroking()
201 aP2 += Point(0.5, 0); in SnapLineToDevicePixelsForStroking()
205 aP2 += Point(0, 0.5); in SnapLineToDevicePixelsForStroking()
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/2d/
H A DPathHelpers.cpp176 bool SnapLineToDevicePixelsForStroking(Point& aP1, Point& aP2, in SnapLineToDevicePixelsForStroking() argument
183 if (aP1.x != aP2.x && aP1.y != aP2.y) { in SnapLineToDevicePixelsForStroking()
187 Point p2 = aP2 + mat.GetTranslation(); in SnapLineToDevicePixelsForStroking()
194 aP2 = p2; in SnapLineToDevicePixelsForStroking()
198 if (aP1.x == aP2.x) { in SnapLineToDevicePixelsForStroking()
201 aP2 += Point(0.5, 0); in SnapLineToDevicePixelsForStroking()
205 aP2 += Point(0, 0.5); in SnapLineToDevicePixelsForStroking()
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/2d/
H A DPathHelpers.cpp176 bool SnapLineToDevicePixelsForStroking(Point& aP1, Point& aP2, in SnapLineToDevicePixelsForStroking() argument
183 if (aP1.x != aP2.x && aP1.y != aP2.y) { in SnapLineToDevicePixelsForStroking()
187 Point p2 = aP2 + mat.GetTranslation(); in SnapLineToDevicePixelsForStroking()
194 aP2 = p2; in SnapLineToDevicePixelsForStroking()
198 if (aP1.x == aP2.x) { in SnapLineToDevicePixelsForStroking()
201 aP2 += Point(0.5, 0); in SnapLineToDevicePixelsForStroking()
205 aP2 += Point(0, 0.5); in SnapLineToDevicePixelsForStroking()
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/2d/
H A DPathHelpers.cpp183 SnapLineToDevicePixelsForStroking(Point& aP1, Point& aP2, in SnapLineToDevicePixelsForStroking() argument
191 if (aP1.x != aP2.x && aP1.y != aP2.y) { in SnapLineToDevicePixelsForStroking()
195 Point p2 = aP2 + mat.GetTranslation(); in SnapLineToDevicePixelsForStroking()
202 aP2 = p2; in SnapLineToDevicePixelsForStroking()
206 if (aP1.x == aP2.x) { in SnapLineToDevicePixelsForStroking()
209 aP2 += Point(0.5, 0); in SnapLineToDevicePixelsForStroking()
213 aP2 += Point(0, 0.5); in SnapLineToDevicePixelsForStroking()
/dports/cad/opencascade/opencascade-7.6.0/src/RWStl/
H A DRWStl.cxx296 const gp_Pnt aP2 = theMesh->Node (anElem[1]); in writeASCII() local
299 const gp_Vec aVec1 (aP1, aP2); in writeASCII()
321 aP2.X(), aP2.Y(), aP2.Z(), in writeASCII()
383 const gp_Pnt aP2 = theMesh->Node (id[1]); in writeBinary() local
386 gp_Vec aVec1 (aP1, aP2); in writeBinary()
406 convertDouble (aP2.X(), &aDataChunk[aByteCount]); aByteCount += 4; in writeBinary()
407 convertDouble (aP2.Y(), &aDataChunk[aByteCount]); aByteCount += 4; in writeBinary()
408 convertDouble (aP2.Z(), &aDataChunk[aByteCount]); aByteCount += 4; in writeBinary()
/dports/science/siconos/siconos-4.4.0/mechanics/src/occ/
H A Dcadmbtb.cpp93 gp_Pnt aP2; in cadmbtb_myf_FaceFace() local
103 SF2.D1(x[2],x[3],aP2, aV2u, aV2v); in cadmbtb_myf_FaceFace()
105 aVP2P1.SetX(aP1.X()-aP2.X()); in cadmbtb_myf_FaceFace()
106 aVP2P1.SetY(aP1.Y()-aP2.Y()); in cadmbtb_myf_FaceFace()
107 aVP2P1.SetZ(aP1.Z()-aP2.Z()); in cadmbtb_myf_FaceFace()
122 gp_Pnt aP2; in cadmbtb_myf_FaceEdge() local
132 SC.D1(x[2],aP2, aV2u); in cadmbtb_myf_FaceEdge()
134 aVP2P1.SetX(aP1.X()-aP2.X()); in cadmbtb_myf_FaceEdge()
135 aVP2P1.SetY(aP1.Y()-aP2.Y()); in cadmbtb_myf_FaceEdge()
136 aVP2P1.SetZ(aP1.Z()-aP2.Z()); in cadmbtb_myf_FaceEdge()
/dports/cad/opencascade/opencascade-7.6.0/src/IntSurf/
H A DIntSurf_PntOn2S.cxx93 gp_Pnt2d aP1(u1, v1), aP2(aU1, aV1); in IsSame() local
95 if(!aP1.IsEqual(aP2, theTol2D)) in IsSame()
99 aP2.SetCoord(aU2, aV2); in IsSame()
101 if(!aP1.IsEqual(aP2, theTol2D)) in IsSame()
/dports/cad/opencascade/opencascade-7.6.0/src/GeometryTest/
H A DGeometryTest_APICommands.cxx526 gp_Pnt aP1, aP2; in extrema() local
527 Ex.Points(aJ, aP1, aP2); in extrema()
529 aPnts2.Append(aP2); in extrema()
551 gp_Pnt aP1, aP2; in extrema() local
552 Ex.Points(aJ, aP1, aP2); in extrema()
554 aPnts2.Append(aP2); in extrema()
577 gp_Pnt aP2, aP1; in extrema() local
578 Ex.Points(aJ, aP2, aP1); in extrema()
580 aPnts2.Append(aP2); in extrema()
603 gp_Pnt aP1, aP2; in extrema() local
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/svx/source/svdraw/
H A Dsvdomeas.cxx356 Point aP2(rRec.aPt2); in ImpCalcGeometrics() local
357 Point aDelt(aP2); aDelt-=aP1; in ImpCalcGeometrics()
480 rPol.aHelpline2.aP1=Point(aP2.X()+dxh1b,aP2.Y()+dyh1b); in ImpCalcGeometrics()
481 rPol.aHelpline2.aP2=Point(aP2.X()+dxh2,aP2.Y()+dyh2); in ImpCalcGeometrics()
485 Point aMainlinePt2(aP2.X()+dx,aP2.Y()+dy); in ImpCalcGeometrics()
512 …rPol.aMainline1.aP2=aMainlinePt1; rPol.aMainline1.aP2.AdjustX( -nLen1 ); RotatePoint(rPol.aMainlin… in ImpCalcGeometrics()
527 aPartPolyA.append(basegfx::B2DPoint(rPol.aMainline1.aP2.X(), rPol.aMainline1.aP2.Y())); in ImpCalcXPoly()
534 aPartPolyA.append(basegfx::B2DPoint(rPol.aMainline2.aP2.X(), rPol.aMainline2.aP2.Y())); in ImpCalcXPoly()
542 aPartPolyA.append(basegfx::B2DPoint(rPol.aMainline3.aP2.X(), rPol.aMainline3.aP2.Y())); in ImpCalcXPoly()
548 aPartPolyA.append(basegfx::B2DPoint(rPol.aHelpline1.aP2.X(), rPol.aHelpline1.aP2.Y())); in ImpCalcXPoly()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/svx/source/svdraw/
H A Dsvdomeas.cxx344 Point aP2(rRec.aPt2); in ImpCalcGeometrics() local
345 Point aDelt(aP2); aDelt-=aP1; in ImpCalcGeometrics()
468 rPol.aHelpline2.aP1=Point(aP2.X()+dxh1b,aP2.Y()+dyh1b); in ImpCalcGeometrics()
469 rPol.aHelpline2.aP2=Point(aP2.X()+dxh2,aP2.Y()+dyh2); in ImpCalcGeometrics()
473 Point aMainlinePt2(aP2.X()+dx,aP2.Y()+dy); in ImpCalcGeometrics()
500 …rPol.aMainline1.aP2=aMainlinePt1; rPol.aMainline1.aP2.AdjustX( -nLen1 ); RotatePoint(rPol.aMainlin… in ImpCalcGeometrics()
515 aPartPolyA.append(basegfx::B2DPoint(rPol.aMainline1.aP2.X(), rPol.aMainline1.aP2.Y())); in ImpCalcXPoly()
522 aPartPolyA.append(basegfx::B2DPoint(rPol.aMainline2.aP2.X(), rPol.aMainline2.aP2.Y())); in ImpCalcXPoly()
530 aPartPolyA.append(basegfx::B2DPoint(rPol.aMainline3.aP2.X(), rPol.aMainline3.aP2.Y())); in ImpCalcXPoly()
536 aPartPolyA.append(basegfx::B2DPoint(rPol.aHelpline1.aP2.X(), rPol.aHelpline1.aP2.Y())); in ImpCalcXPoly()
[all …]
/dports/cad/opencascade/opencascade-7.6.0/tests/bugs/moddata_3/
H A Dbug23830_227 regexp {Point\s3D\s:\s([-0-9+.e, ]+)} [dump v${i}_2] aDummy aP2
30 regexp {\s([-0-9+.e]+)$} $aP2 aDummy aZ1
31 regexp {(^[-0-9+.e]+)} $aP2 aDummy aX2
32 regexp {,\s([-0-9+.e]+),\s} $aP2 aDummy aY2
33 regexp {\s([-0-9+.e]+)$} $aP2 aDummy aZ2
/dports/cad/opencascade/opencascade-7.6.0/src/Extrema/
H A DExtrema_ExtCC.cxx539 mypoints.Append(aP2); in PrepareParallelResult()
553 Extrema_POnCurv aP1, aP2; in PrepareParallelResult() local
567 aP2.SetValues(myInf[1], myP2f); in PrepareParallelResult()
572 aP2.SetValues(mySup[1], myP2l); in PrepareParallelResult()
577 aP2.SetValues(myInf[1], myP2f); in PrepareParallelResult()
582 aP2.SetValues(mySup[1], myP2l); in PrepareParallelResult()
586 mypoints.Append(aP2); in PrepareParallelResult()
761 mypoints.Append(aP2); in PrepareParallelResult()
779 Extrema_POnCurv aP1, aP2; in PrepareParallelResult() local
795 aP2.SetValues(myInf[1], myP2f); in PrepareParallelResult()
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/corelib/tools/
H A Dqline.h178 inline void QLine::setP2(const QPoint &aP2) in setP2() argument
180 pt2 = aP2; in setP2()
183 inline void QLine::setPoints(const QPoint &aP1, const QPoint &aP2) in setPoints() argument
186 pt2 = aP2; in setPoints()
386 inline void QLineF::setP2(const QPointF &aP2) in setP2() argument
388 pt2 = aP2; in setP2()
391 inline void QLineF::setPoints(const QPointF &aP1, const QPointF &aP2) in setPoints() argument
394 pt2 = aP2; in setPoints()
/dports/editors/libreoffice/libreoffice-7.2.6.2/vcl/workben/
H A Dsvptest.cxx215 Point aP1(aPaperSize.Width() / 48, 0), aP2(aPaperSize.Width() / 40, 0); in Paint() local
295 while (aP2.X() < aCenter.X() && n++ < 680) in Paint()
313 project(aP2) + aCenter, in Paint()
318 …aPoint.setX( static_cast<int>((static_cast<double>(aP2.X())*cosd - static_cast<double>(aP2.Y())*si… in Paint()
319 …aPoint.setY( static_cast<int>((static_cast<double>(aP2.Y())*cosd + static_cast<double>(aP2.X())*si… in Paint()
320 aP2 = aPoint; in Paint()

12345678910>>...12