Searched defs:contains (Results 1 - 15 of 15) sorted by relevance
/inkscape/src/2geom/ |
H A D | path.cpp | 85 bool PathInterval::contains(PathTime const &pos) const { function in class:Geom::PathInterval 385 // if path only contains degenerate curves, no second cut is added
|
H A D | path-intersection.h | 47 inline bool contains(Path const & p, Point const &i, bool evenodd = true) { function in namespace:Geom
|
H A D | convex-hull.cpp | 225 bool ConvexHull::contains(Point const &p) const function in class:Geom::ConvexHull 247 bool ConvexHull::contains(Rect const &r) const function in class:Geom::ConvexHull 250 if (!contains(r.corner(i))) return false; 255 bool ConvexHull::contains(ConvexHull const &ch) const function in class:Geom::ConvexHull 269 if (!contains(*i)) return false;
|
H A D | circle.cpp | 129 bool Circle::contains(Rect const &r) const function in class:Geom::Circle 132 if (!contains(r.corner(i))) return false; 137 bool Circle::contains(Circle const &other) const function in class:Geom::Circle 212 if (contains(other)) return result;
|
H A D | circle.h | 94 bool contains(Point const &p) const { return distance(p, _center) <= _radius; } function in class:Geom::Circle 95 bool contains(Rect const &other) const; 96 bool contains(Circle const &other) const;
|
H A D | angle.h | 234 /// Check whether the interval contains only a single angle. 238 /// Check whether the interval contains all angles. 326 bool contains(Angle a) const { function in class:Geom::AngleInterval
|
H A D | ellipse.cpp | 395 bool Ellipse::contains(Point const &p) const function in class:Geom::Ellipse
|
H A D | generic-rect.h | 74 /** @brief Create a rectangle that contains only the point at (0,0). */ 97 * @return Rectangle that contains all points from [start, end). */ 203 if (!contains(p)) { 225 bool contains(GenericRect<C> const &r) const { function in class:Geom::GenericRect 226 return f[X].contains(r[X]) && f[Y].contains(r[Y]); 234 inline bool contains(OptCRect const &r) const; 237 bool contains(CPoint const &p) const { function in class:Geom::GenericRect 238 return f[X].contains(p[X]) && f[Y].contains( 403 bool contains(CRect const &r) const { return *this && (*this)->contains(r); } function in class:Geom::GenericOptRect 412 bool contains(OptCRect const &r) const { return *this && (*this)->contains(r); } function in class:Geom::GenericOptRect 416 bool contains(CPoint const &p) const { return *this && (*this)->contains(p); } function in class:Geom::GenericOptRect 513 inline bool GenericRect<C>::contains(OptCRect const &r) const { function in class:Geom::GenericRect [all...] |
/inkscape/src/ |
H A D | unicoderange.cpp | 63 bool UnicodeRange::contains(gchar unicode){ function in class:UnicodeRange
|
H A D | sp-glyph-kerning.cpp | 64 bool GlyphNames::contains(const char* name) function in class:GlyphNames
|
/inkscape/src/ui/tool/ |
H A D | manipulator.h | 95 bool contains(void *item) { function in class:Inkscape::UI::MultiManipulator
|
/inkscape/src/extension/param/ |
H A D | enum.cpp | 180 bool ParamComboBox::contains(const gchar * guitext, SPDocument const * /*doc*/, Inkscape::XML::Node const * /*node*/) const function in class:Inkscape::Extension::ParamComboBox
|
/inkscape/src/libavoid/ |
H A D | router.h | 147 ContainsMap contains; member in class:Avoid::Router
|
H A D | vertices.cpp | 253 ContainsMap& contains = router->contains; local 256 ss.insert(contains[pID].begin(), contains[pID].end()); 260 ss.insert(contains[qID].begin(), contains[qID].end());
|
H A D | graph.cpp | 384 ShapeSet& ss = _router->contains[iID]; 408 ShapeSet& ss = _router->contains[jID]; 458 ContainsMap &contains = _router->contains; local 461 ss.insert(contains[iID].begin(), contains[iID].end()); 465 ss.insert(contains[jID].begin(), contains[jID].end());
|
Completed in 56 milliseconds