~foxtrotgps-team/foxtrotgps/trunk

« back to all changes in this revision

Viewing changes to src/route.c

  • Committer: Paul Wise
  • Date: 2018-03-06 03:32:21 UTC
  • Revision ID: pabs3@bonedaddy.net-20180306033221-lzyia8y0cpw95j1b
Remove trailing whitespace

Show diffs side-by-side

added added

removed removed

Lines of Context:
151
151
        double arrow_length = 20;
152
152
        double arrow_degrees = M_PI / 10;
153
153
 
154
 
        /* https://kapo-cpp.blogspot.com/2008/10/drawing-arrows-with-cairo.html */
 
154
        /* http://kapo-cpp.blogspot.com/2008/10/drawing-arrows-with-cairo.html */
155
155
 
156
156
        x1 = end_x + arrow_length * cos (angle - arrow_degrees);
157
157
        y1 = end_y + arrow_length * sin (angle - arrow_degrees);