make PolyLine use distance_to_segment_squared(), and add separate (null, for now...
authorPaul Davis <paul@linuxaudiosystems.com>
Mon, 9 Dec 2013 22:24:34 +0000 (17:24 -0500)
committerPaul Davis <paul@linuxaudiosystems.com>
Mon, 9 Dec 2013 22:24:34 +0000 (17:24 -0500)
libs/canvas/canvas/curve.h
libs/canvas/curve.cc
libs/canvas/lookup_table.cc
libs/canvas/poly_item.cc
libs/canvas/poly_line.cc

index 4cf69e19e3984ee0d8207454a08440285d60572c..2d60f0f6d7574c223e62fd28a1b4fcfb678b307b 100644 (file)
@@ -32,6 +32,8 @@ public:
     void render (Rect const & area, Cairo::RefPtr<Cairo::Context>) const;
     void set (Points const &);
 
+    bool covers (Duple const &) const;
+
   protected:
     void render_path (Rect const &, Cairo::RefPtr<Cairo::Context>) const;
     void render_curve (Rect const &, Cairo::RefPtr<Cairo::Context>) const;
index 5bbd33799deb1dd55f46cb977bd8e962418de0e4..df65cf491ce2548019643f75d9c1094915908442 100644 (file)
@@ -103,6 +103,8 @@ Curve::render (Rect const & area, Cairo::RefPtr<Cairo::Context> context) const
 void 
 Curve::render_path (Rect const & area, Cairo::RefPtr<Cairo::Context> context) const
 {
+       std::cerr << whatami() << '/' << name << " render curve w/" << _points.size() << " points, " << first_control_points.size() << " first and "
+                 << second_control_points.size() << " second\n";
        PolyItem::render_curve (area, context, first_control_points, second_control_points);
 }
 
@@ -209,3 +211,9 @@ Curve::solve (std::vector<double> const & rhs)
        
        return x;
 }
+
+bool
+Curve::covers (Duple const & point) const
+{
+       return false;
+}
index 0cae7c9c4feeba8209b9a8a1839e97853744b8f0..8fd929d3253eea43d77ce876f55c85062c29cbc0 100644 (file)
@@ -64,6 +64,7 @@ DumbLookupTable::items_at_point (Duple point) const
                }
                
                if ((*i)->covers (point)) {
+                       std::cerr << "\t\t" << (*i)->whatami() << '/' << (*i)->name << " covers " << point << std::endl;
                        vitems.push_back (*i);
                }
        }
index b054b70bbf82efe17f30fc77eeade815d11eb219..239ae06e186aeba3141877fb5387738094353c24 100644 (file)
@@ -94,7 +94,13 @@ PolyItem::render_curve (Rect const & area, Cairo::RefPtr<Cairo::Context> context
 
        for (Points::const_iterator i = _points.begin(); i != _points.end(); ++i) {
 
-               if (done_first) {
+               if (!done_first) {
+
+                       Duple c = item_to_window (Duple (i->x, i->y));
+                       context->move_to (c.x, c.y);
+                       done_first = true;
+
+               } else {
 
                        Duple c1 = item_to_window (Duple (cp1->x, cp1->y));
                        Duple c2 = item_to_window (Duple (cp2->x, cp2->y));
@@ -104,12 +110,6 @@ PolyItem::render_curve (Rect const & area, Cairo::RefPtr<Cairo::Context> context
 
                        cp1++;
                        cp2++;
-                       
-               } else {
-
-                       Duple c = item_to_window (Duple (i->x, i->y));
-                       context->move_to (c.x, c.y);
-                       done_first = true;
                }
        }
 }
index 2441e4e3dc4a31d771567b091132dc77a4b88994..7118e47555d1e74d0f03752e5855ffe8fbd2d8c5 100644 (file)
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */
 
+#include <algorithm>
+
 #include "canvas/poly_line.h"
+#include "canvas/canvas.h"
+#include "canvas/utils.h"
 
 using namespace ArdourCanvas;
 
@@ -53,21 +57,39 @@ PolyLine::covers (Duple const & point) const
        Points::size_type j;
 
        /* repeat for each line segment */
-       
+
+       const Rect visible (_canvas->visible_area());
+       static const double threshold = 2.0;
+
        for (i = 1, j = 0; i < npoints; ++i, ++j) {
 
-               /* compute area of triangle computed by the two line points and the one
-                  we are being asked about. If zero (within a given tolerance), the
-                  points are co-linear and the argument is on the line.
+               Duple at;
+               double t;
+               Duple a (_points[j]);
+               Duple b (_points[i]);
+               
+               /*
+                 Clamp the line endpoints to the visible area of the canvas. If we do
+                 not do this, we may have a line segment extending to COORD_MAX and our
+                 math goes wrong.
                */
-
-               double area = fabs (_points[j].x * (_points[j].y - p.y)) + 
-                                  (_points[i].x * (p.y - _points[j].y)) + 
-                                  (p.x * (_points[j].y - _points[i].y));
-               if (area < 0.001) {
+               
+               a.x = std::min (a.x, visible.x1);
+               a.y = std::min (a.y, visible.y1);
+               b.x = std::min (b.x, visible.x1);
+               b.y = std::min (b.y, visible.y1);
+               
+               double d = distance_to_segment_squared (p, a, b, t, at);
+               
+               if (t < 0.0 || t > 1.0) {
+                       return false;
+               }
+               
+               if (d < threshold) {
                        return true;
                }
+               
        }
-
+       
        return false;
 }