/inkscape/src/ui/widget/ |
H A D | point.h | 32 class Point : public Labelled class in namespace:Inkscape::UI::Widget 38 * Construct a Point Widget. 47 Point( Glib::ustring const &label, 54 * Construct a Point Widget. 64 Point( Glib::ustring const &label, 72 * Construct a Point Widget. 83 Point( Glib::ustring const &label, 129 Geom::Point getValue() const; 156 void setValue(Geom::Point const & p);
|
H A D | point.cpp | 28 Point::Point(Glib::ustring const &label, Glib::ustring const &tooltip, function in class:Inkscape::UI::Widget::Point 41 Point::Point(Glib::ustring const &label, Glib::ustring const &tooltip, function in class:Inkscape::UI::Widget::Point 55 Point::Point(Glib::ustring const &label, Glib::ustring const &tooltip, function in class:Inkscape::UI::Widget::Point 74 unsigned Point::getDigits() const 79 double Point::getStep() const 84 double Point::getPage() const 89 double Point [all...] |
/inkscape/src/libdepixelize/priv/ |
H A D | point.h | 31 struct Point struct in namespace:Tracer 33 Point() : smooth(false), visible(true) {} function in struct:Tracer::Point 34 Point(T x, T y) : smooth(false), visible(true), x(x), y(y) {} function in struct:Tracer::Point 35 Point(T x, T y, bool smooth) : smooth(smooth), visible(true), x(x), y(y) {} function in struct:Tracer::Point 37 Point operator+(const Point &rhs) const 39 return Point(x + rhs.x, y + rhs.y); 42 Point operator/(T foo) const 44 return Point(x / foo, y / foo); 47 Point invisibl [all...] |
/inkscape/share/extensions/ |
H A D | voronoi2svg.py | 43 class Point: class in inherits: 259 pts.append(Point(pt[0],pt[1])) 274 seeds.append(Point(cx,cy)) 317 pts.append(Point(safeBox[0],safeBox[2])) 318 pts.append(Point(safeBox[1],safeBox[2])) 319 pts.append(Point(safeBox[1],safeBox[3])) 320 pts.append(Point(safeBox[0],safeBox[3]))
|
H A D | ffgeom.py | 29 class Point: class in inherits: 40 return Point(self['x'],self['y']) 99 if self.length() == 0: return Point(NaN, NaN) 103 return Point(x, y) 105 if self.length() == 0: return Point(NaN, NaN) 108 return Point(x, y) 110 return Segment(Point(p['x'] + self.delta_x(), p['y'] + self.delta_y()), p) 134 return Point(x, y) 135 return Point(NaN, NaN)
|
/inkscape/src/libavoid/ |
H A D | geomtypes.h | 41 //! @brief The Point class defines a point in the plane. 46 class Point class in namespace:Avoid 51 Point(); 57 Point(const double xv, const double yv); 64 bool operator==(const Point& rhs) const; 70 bool operator!=(const Point& rhs) const; 74 //! to allow std::set<Point>. 79 bool operator<(const Point& rhs) const; 105 //! @brief A vector, represented by the Point class. 107 typedef Point Vecto [all...] |
H A D | geomtypes.cpp | 40 Point::Point() : function in class:Avoid::Point 47 Point::Point(const double xv, const double yv) : function in class:Avoid::Point 56 bool Point::operator==(const Point& rhs) const 66 bool Point::operator!=(const Point& rhs) const 76 // Just defined to allow std::set<Point>. Not particularly meaningful! 77 bool Point [all...] |
/inkscape/src/libcola/ |
H A D | defs.h | 74 struct Point { struct 77 int operator==(Point other) { 123 } Point; typedef in typeref:struct:__anon101
|
/inkscape/src/2geom/ |
H A D | intersection.h | 61 Intersection(TimeA const &ta, TimeB const &tb, Point const &p) 68 Point point() const { 71 /// Implicit conversion to Point. 72 operator Point() const { 103 Point _point;
|
H A D | point.h | 50 class Point class in namespace:Geom 51 : boost::additive< Point 52 , boost::totally_ordered< Point 53 , boost::multiplicative< Point, Coord 54 , MultipliableNoncommutative< Point, Affine 55 , MultipliableNoncommutative< Point, Translate 56 , MultipliableNoncommutative< Point, Rotate 57 , MultipliableNoncommutative< Point, Scale 58 , MultipliableNoncommutative< Point, HShear 59 , MultipliableNoncommutative< Point, VShea 72 Point() function in class:Geom::Point 76 Point(Coord x, Coord y) { function in class:Geom::Point 80 Point(IntPoint const &p) { function in class:Geom::Point [all...] |
H A D | path.h | 335 ClosingSegment(Point const &p1, Point const &p2) : LineSegment(p1, p2) {} 343 StitchSegment(Point const &p1, Point const &p2) : LineSegment(p1, p2) {} 351 explicit Path(Point const &p = Point()) argument 540 Point pointAt(Coord t) const; 548 Point pointAt(PathTime const &pos) const; 552 Point operator()(Coord t) const { return pointAt(t); } 570 int winding(Point cons [all...] |
/inkscape/src/ui/tool/ |
H A D | control-point.h | 107 Geom::Point const &position() const { return _position; } 109 operator Geom::Point const &() { return _position; } 117 virtual void move(Geom::Point const &pos); 126 virtual void setPosition(Geom::Point const &pos); 167 /*sigc::signal<void, Geom::Point const &, Geom::Point &, GdkEventMotion*> signal_dragged; 234 ControlPoint(SPDesktop *d, Geom::Point const &initial_pos, SPAnchorType anchor, 248 ControlPoint(SPDesktop *d, Geom::Point const &initial_pos, SPAnchorType anchor, 271 virtual void dragged(Geom::Point &new_pos, GdkEventMotion *event); 357 static Geom::Point cons [all...] |
/inkscape/src/trace/potrace/ |
H A D | inkscape-potrace.cpp | 110 } Point; typedef in namespace:Inkscape::Trace::Potrace 117 static bool hasPoint(std::vector<Point> &points, double x, double y) 121 Point p = points[i]; 131 * format into the output stream. The Point vector is used to prevent 135 Inkscape::SVG::PathString& data, std::vector<Point> &points) 161 Point p; 398 std::vector<Point> points;
|
/inkscape/src/libuemf/ |
H A D | upmf_print.c | 1548 \param Point U_PMF_POINT Structure to print 1551 int U_PMF_POINT_S_print(U_PMF_POINT *Point){\ argument 1552 if(!Point){ return(0); } 1553 printf("{%d,%d}", Point->X, Point->Y); 1576 \param Point U_PMF_POINTF Structure to print 1579 int U_PMF_POINTF_S_print(U_PMF_POINTF *Point){ argument 1580 if(!Point){ return(0); } 1581 printf("{%f,%f}", Point->X, Point [all...] |
H A D | upmf.c | 745 \param Point Point to move to. 749 int U_PATH_moveto(U_DPSEUDO_OBJ *Path, U_PMF_POINTF Point, uint8_t Flags){ argument 755 tpo = U_PMF_POINTF_set(1, &Point); 777 \param Point U_PMF_POINTF point to draw to. 781 int U_PATH_lineto(U_DPSEUDO_OBJ *Path, U_PMF_POINTF Point, uint8_t Flags){ argument 787 tpo = U_PMF_POINTF_set(1, &Point); 946 U_PMF_POINTF U_qparam(double Alpha, double a, double b, U_PMF_POINTF *Point, double Ang, double Theta, int mode){ argument 950 Q.X = Point->X + Alpha * Prime.X; 951 Q.Y = Point [all...] |