Searched defs:Pt2 (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/
H A Dproj_pt.cpp19 Pt2::Pt2(const char *coord_str) { function in class:Proj::Pt2
24 g_warning ("Coordinate string is empty. Creating default Pt2\n");
41 Pt2::normalize() {
50 Pt2::affine() {
58 Pt2::coord_string() {
72 g_warning ("Coordinate string is empty. Creating default Pt2\n");
H A Dproj_pt.h23 class Pt2 { class in namespace:Proj
25 Pt2 () { pt[0] = 0; pt[1] = 0; pt[2] = 1.0; } // we default to (0 : 0 : 1) function in class:Proj::Pt2
26 Pt2 (double x, double y, double w) { pt[0] = x; pt[1] = y; pt[2] = w; } function in class:Proj::Pt2
27 Pt2 (Geom::Point const &point) { pt[0] = point[Geom::X]; pt[1] = point[Geom::Y]; pt[2] = 1; } function in class:Proj::Pt2
28 Pt2 (const char *coord_str);
39 inline bool operator== (Pt2 &rhs) {
46 inline bool operator!= (Pt2 &rhs) {
52 inline Pt2 &operator+(Pt2 &rhs) const {
53 Pt2 *resul
[all...]

Completed in 31 milliseconds