Home
last modified time | relevance | path

Searched refs:simplePath (Results 1 – 25 of 53) sorted by relevance

123

/dports/graphics/libboard/libboard-5b38274/src/
H A DPathBoundaries.cpp253 Path simplePath = path; in pathBoundaryPoints() local
255 while (simplePath.size() > 1 && (simplePath[0] == simplePath[simplePath.size()-1]) ) { in pathBoundaryPoints()
263 size_t limit = path.closed() ? simplePath.size() : (simplePath.size()-2); in pathBoundaryPoints()
266 Point p1 = simplePath[(i+1)%simplePath.size()]; in pathBoundaryPoints()
267 Point p2 = simplePath[(i+2)%simplePath.size()]; in pathBoundaryPoints()
320 p = simplePath[simplePath.size()-2]; in pathBoundaryPoints()
321 q = simplePath[simplePath.size()-1]; in pathBoundaryPoints()
334 p = simplePath[simplePath.size()-2]; in pathBoundaryPoints()
335 q = simplePath[simplePath.size()-1]; in pathBoundaryPoints()
348 p = simplePath[simplePath.size()-2]; in pathBoundaryPoints()
[all …]
/dports/www/firefox/firefox-99.0/layout/svg/
H A DSVGGeometryFrame.cpp656 SVGGeometryElement::SimplePath simplePath; in Render() local
659 element->GetAsSimplePath(&simplePath); in Render()
660 if (!simplePath.IsPath()) { in Render()
677 if (simplePath.IsRect()) { in Render()
697 simplePath.Reset(); in Render()
723 if (simplePath.IsRect()) { in Render()
726 } else if (simplePath.IsLine()) { in Render()
727 drawTarget->StrokeLine(simplePath.Point1(), simplePath.Point2(), in Render()
793 element->GetAsSimplePath(&simplePath); in CreateWebRenderCommands()
795 if (!simplePath.IsRect()) { in CreateWebRenderCommands()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/layout/svg/
H A DSVGGeometryFrame.cpp652 SVGGeometryElement::SimplePath simplePath; in Render() local
655 element->GetAsSimplePath(&simplePath); in Render()
656 if (!simplePath.IsPath()) { in Render()
673 if (simplePath.IsRect()) { in Render()
674 drawTarget->FillRect(simplePath.AsRect(), fillPattern, drawOptions); in Render()
693 simplePath.Reset(); in Render()
719 if (simplePath.IsRect()) { in Render()
720 drawTarget->StrokeRect(simplePath.AsRect(), strokePattern, in Render()
722 } else if (simplePath.IsLine()) { in Render()
723 drawTarget->StrokeLine(simplePath.Point1(), simplePath.Point2(), in Render()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/tests/
H A DPathOpsTestCommon.cpp204 void CubicPathToSimple(const SkPath& cubicPath, SkPath* simplePath) { in CubicPathToSimple() argument
205 simplePath->reset(); in CubicPathToSimple()
210 simplePath->moveTo(pts[0].fX, pts[0].fY); in CubicPathToSimple()
213 simplePath->lineTo(pts[1].fX, pts[1].fY); in CubicPathToSimple()
216 simplePath->quadTo(pts[1].fX, pts[1].fY, pts[2].fX, pts[2].fY); in CubicPathToSimple()
234 simplePath->cubicTo(cPts[0].fX, cPts[0].fY, cPts[1].fX, cPts[1].fY, in CubicPathToSimple()
241 simplePath->close(); in CubicPathToSimple()
H A DPathOpsTestCommon.h31 void CubicPathToSimple(const SkPath& cubicPath, SkPath* simplePath);
/dports/www/firefox-esr/firefox-91.8.0/layout/svg/
H A DSVGGeometryFrame.cpp667 SVGGeometryElement::SimplePath simplePath; in Render() local
670 element->GetAsSimplePath(&simplePath); in Render()
671 if (!simplePath.IsPath()) { in Render()
688 if (simplePath.IsRect()) { in Render()
689 drawTarget->FillRect(simplePath.AsRect(), fillPattern, drawOptions); in Render()
708 simplePath.Reset(); in Render()
734 if (simplePath.IsRect()) { in Render()
735 drawTarget->StrokeRect(simplePath.AsRect(), strokePattern, in Render()
737 } else if (simplePath.IsLine()) { in Render()
738 drawTarget->StrokeLine(simplePath.Point1(), simplePath.Point2(), in Render()
/dports/mail/thunderbird/thunderbird-91.8.0/layout/svg/
H A DSVGGeometryFrame.cpp667 SVGGeometryElement::SimplePath simplePath; in Render() local
670 element->GetAsSimplePath(&simplePath); in Render()
671 if (!simplePath.IsPath()) { in Render()
688 if (simplePath.IsRect()) { in Render()
689 drawTarget->FillRect(simplePath.AsRect(), fillPattern, drawOptions); in Render()
708 simplePath.Reset(); in Render()
734 if (simplePath.IsRect()) { in Render()
735 drawTarget->StrokeRect(simplePath.AsRect(), strokePattern, in Render()
737 } else if (simplePath.IsLine()) { in Render()
738 drawTarget->StrokeLine(simplePath.Point1(), simplePath.Point2(), in Render()
/dports/misc/ompl/ompl-1.5.2/demos/constraint/
H A DConstrainedPlanningCommon.py222 simplePath = self.ss.getSolutionPath()
224 (path.length(), simplePath.length()))
226 if not simplePath.check():
237 simplePath.interpolate()
239 if not simplePath.check():
250 print(simplePath.printAsMatrix(), file=simplepathfile)
H A DConstrainedPlanningCommon.h479 auto simplePath = ss->getSolutionPath(); variable
480 OMPL_INFORM("Simplified Path Length: %.3f -> %.3f", path.length(), simplePath.length());
482 if (!simplePath.check())
493 simplePath.interpolate();
495 if (!simplePath.check())
507 simplePath.printAsMatrix(simplepathfile);
/dports/lang/spidermonkey60/firefox-60.9.0/layout/svg/
H A DSVGGeometryFrame.cpp724 SVGGeometryElement::SimplePath simplePath; in Render() local
727 element->GetAsSimplePath(&simplePath); in Render()
728 if (!simplePath.IsPath()) { in Render()
745 if (simplePath.IsRect()) { in Render()
746 drawTarget->FillRect(simplePath.AsRect(), fillPattern, drawOptions); in Render()
765 simplePath.Reset(); in Render()
791 if (simplePath.IsRect()) { in Render()
792 drawTarget->StrokeRect(simplePath.AsRect(), strokePattern, in Render()
794 } else if (simplePath.IsLine()) { in Render()
795 drawTarget->StrokeLine(simplePath.Point1(), simplePath.Point2(), in Render()
/dports/www/firefox-legacy/firefox-52.8.0esr/layout/svg/
H A DnsSVGPathGeometryFrame.cpp810 nsSVGPathGeometryElement::SimplePath simplePath;
813 element->GetAsSimplePath(&simplePath);
814 if (!simplePath.IsPath()) {
828 if (simplePath.IsRect()) {
829 drawTarget->FillRect(simplePath.AsRect(), fillPattern, drawOptions);
848 simplePath.Reset();
872 if (simplePath.IsRect()) {
873 drawTarget->StrokeRect(simplePath.AsRect(), strokePattern,
875 } else if (simplePath.IsLine()) {
876 drawTarget->StrokeLine(simplePath.Point1(), simplePath.Point2(),
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/qmldesigner/components/curveeditor/
H A Danimationcurve.h73 QPainterPath simplePath() const;
H A Danimationcurve.cpp210 QPainterPath AnimationCurve::simplePath() const in simplePath() function in QmlDesigner::AnimationCurve
231 QPainterPath path = simplePath(); in intersectionPath()
/dports/games/chessx/chessx-1.5.6/src/quazip/
H A Dquazipdir.cpp27 inline QString simplePath() const in simplePath() function in QuaZipDirPrivate
358 QString basePath = simplePath(); in entryInfoList()
578 return d->simplePath().isEmpty(); in isRoot()
/dports/archivers/quazip/quazip-1.2/quazip/
H A Dquazipdir.cpp47 inline QString simplePath() const {return QDir::cleanPath(dir);} in simplePath() function in QuaZipDirPrivate
327 QString basePath = simplePath(); in entryInfoList()
513 return d->simplePath().isEmpty(); in isRoot()
/dports/cad/librepcb/librepcb-0.1.6/libs/quazip/quazip/
H A Dquazipdir.cpp47 inline QString simplePath() const {return QDir::cleanPath(dir);} in simplePath() function in QuaZipDirPrivate
327 QString basePath = simplePath(); in entryInfoList()
513 return d->simplePath().isEmpty(); in isRoot()
/dports/net-mgmt/seafile-gui/seafile-client-7.0.9/third_party/quazip/
H A Dquazipdir.cpp46 inline QString simplePath() const {return QDir::cleanPath(dir);} in simplePath() function in QuaZipDirPrivate
326 QString basePath = simplePath(); in entryInfoList()
512 return d->simplePath().isEmpty(); in isRoot()
/dports/games/multimc/MultiMC5-0.6.11/libraries/quazip/quazip/
H A Dquazipdir.cpp46 inline QString simplePath() const {return QDir::cleanPath(dir);} in simplePath() function in QuaZipDirPrivate
326 QString basePath = simplePath(); in entryInfoList()
512 return d->simplePath().isEmpty(); in isRoot()
/dports/editors/tea/tea-qt-60.5.1/
H A Dquazipdir.cpp50 inline QString simplePath() const {return QDir::cleanPath(dir);} in simplePath() function in QuaZipDirPrivate
332 QString basePath = simplePath(); in entryInfoList()
520 return d->simplePath().isEmpty(); in isRoot()
/dports/editors/texstudio/texstudio-4.1.2/src/quazip/quazip/
H A Dquazipdir.cpp46 inline QString simplePath() const {return QDir::cleanPath(dir);} in simplePath() function in QuaZipDirPrivate
330 QString basePath = simplePath(); in entryInfoList()
516 return d->simplePath().isEmpty(); in isRoot()
/dports/net/bosh-bootloader/bosh-bootloader-7.2.12/bosh/
H A Dexecutor_test.go74 simplePath := filepath.Join(deploymentDir, "no-external-ip.yml")
77 contents, err := fs.ReadFile(simplePath)
273 simplePath := filepath.Join(deploymentDir, "LICENSE")
276 contents, err := fs.ReadFile(simplePath)
/dports/audio/py-music21/music21-7.1.0/music21/noteworthy/
H A Dtranslate.py854 simplePath = nwcTranslatePath / 'verySimple.nwctxt'
855 myScore = NoteworthyTranslator().parseFile(simplePath)
/dports/devel/cppcheck-gui/cppcheck-2.6.3/externals/simplecpp/
H A Dsimplecpp.cpp2614 std::string simplePath = simplecpp::simplifyPath(path); in _openHeader() local
2615 if (nonExistingFilesCache.contains(simplePath)) in _openHeader()
2618 f.open(simplePath.c_str()); in _openHeader()
2620 return simplePath; in _openHeader()
2622 nonExistingFilesCache.add(simplePath); in _openHeader()
2654 std::string simplePath = _openHeader(f, getIncludePathFileName(*it, header)); in openHeaderIncludePath() local
2655 if (!simplePath.empty()) in openHeaderIncludePath()
2656 return simplePath; in openHeaderIncludePath()
/dports/devel/cppcheck/cppcheck-2.6.3/externals/simplecpp/
H A Dsimplecpp.cpp2614 std::string simplePath = simplecpp::simplifyPath(path); in _openHeader() local
2615 if (nonExistingFilesCache.contains(simplePath)) in _openHeader()
2618 f.open(simplePath.c_str()); in _openHeader()
2620 return simplePath; in _openHeader()
2622 nonExistingFilesCache.add(simplePath); in _openHeader()
2654 std::string simplePath = _openHeader(f, getIncludePathFileName(*it, header)); in openHeaderIncludePath() local
2655 if (!simplePath.empty()) in openHeaderIncludePath()
2656 return simplePath; in openHeaderIncludePath()
/dports/games/kshisen/kshisen-21.12.3/src/
H A Dboard.cpp1180 auto simplePath = 0; in findPath() local
1198 if ((simplePath = findSimplePath(TilePos(tempX, tempY), tilePos2, possibleMoves)) > 0) { in findPath()
1200 numberOfPaths += simplePath; in findPath()

123