libSBNW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Macros Modules Pages
geom.h
1 /*== SAGITTARIUS =====================================================================
2  * Copyright (c) 2012, Jesse K Medley
3  * All rights reserved.
4 
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  * Redistributions of source code must retain the above copyright
8  notice, this list of conditions and the following disclaimer.
9  * Redistributions in binary form must reproduce the above copyright
10  notice, this list of conditions and the following disclaimer in the
11  documentation and/or other materials provided with the distribution.
12  * Neither the name of The University of Washington nor the
13  names of its contributors may be used to endorse or promote products
14  derived from this software without specific prior written permission.
15 
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE
20  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 
28 //== FILEDOC =========================================================================
29 
34 //== BEGINNING OF CODE ===============================================================
35 
36 #ifndef __SBNW_MATH_GEOM_H_
37 #define __SBNW_MATH_GEOM_H_
38 
39 //== INCLUDES ========================================================================
40 
42 #include "graphfab/layout/point.h"
43 #include "graphfab/layout/box.h"
44 #include "graphfab/math/sign_mag.h"
45 
46 #include <math.h>
47 
48 //-- C++ code --
49 #ifdef __cplusplus
50 
51 namespace Graphfab {
52 
54  inline Real deg2r(const Real deg) {
55  const Real pi = 3.14159;
56  return deg*pi/180.;
57  }
58 
60  inline Point computeCubic(const Point& alpha, const Point& beta, const Point& gamma, const Point& delta, Real t) {
61  return alpha*t*t*t + beta*t*t + gamma*t + delta;
62  }
63 
64  inline Point new2ndPos(const Point& first, const Point& second, const Real deg, const Real dist, const bool rel_dist) {
65  Real h, o, a, x;
66  Real hnew, onew, anew;
67 
68  o = second.y - first.y;
69  a = second.x - first.x;
70  h = sqrt(pow(a,2.) + pow(o,2.));
71 
72  if(rel_dist)
73  hnew = h + h*dist;
74  else
75  hnew = h + dist;
76 
77  const Real ep = 1e-6;
78 
79  if(mag(a) > ep)
80  x = atan(o/a);
81  else
82  x = sign(o)*3.14159/2.;
83 
84  onew = hnew * sin(x + deg2r(deg));
85  anew = hnew * cos(x + deg2r(deg));
86 
87  if(second.x >= first.x)
88  return Point(first.x + anew, first.y + onew);
89  else
90  return Point(first.x - anew, first.y - onew);
91  }
92 
93  // bounding box-based
94  Point calcCurveBackup(const Point& src, const Point& cent, const Box& ext, Real dist = 20);
95 
96  class Line2Desc {
97  public:
98  Line2Desc(const Point& start, const Point& end);
99 
100  Real getA() const { return A_; }
101 
102  Real getB() const { return B_; }
103 
104  Real getC() const { return C_; }
105 
106  protected:
107  Real A_, B_, C_;
108 
109  _GraphfabExport friend std::ostream& operator<<(std::ostream& o, const Line2Desc& c);
110  };
111 
112  _GraphfabExport std::ostream& operator<<(std::ostream& o, const Line2Desc& c);
113 
114  class CubicBezier2Desc {
115  public:
116  CubicBezier2Desc(const Point& start, const Point& c1, const Point& c2, const Point& end);
117 
119  Point p(Real t) const;
120 
122  Point getCP(int n) const;
123 
124  protected:
125  Point P0_, P1_, P2_, P3_;
126 
127  _GraphfabExport friend std::ostream& operator<<(std::ostream& o, const CubicBezier2Desc& c);
128  };
129 
130  _GraphfabExport std::ostream& operator<<(std::ostream& o, const CubicBezier2Desc& c);
131 
132  // http://www.particleincell.com/blog/2013/cubic-line-intersection/
133  class CubicBezierIntersection {
134  public:
135  CubicBezierIntersection(const Line2Desc& l, const CubicBezier2Desc& c);
136 
137  const std::vector<Real>& getIntersectionPoints() const { return r_; }
138 
139  protected:
140  std::vector<Real> r_;
141  };
142 
143 // class LinearIntersectionResults {
144 // public:
145 // const Point& p() { return p_; }
146 // bool exists() { return v_; }
147 //
148 // protected:
149 // Point p_;
150 // bool v_;
151 //
152 // friend class LinearIntersection;
153 // };
154 
155  class LinearIntersection {
156  public:
157  LinearIntersection(const Point& pbegin, const Point& pend, const Point& qbegin, const Point& qend);
158 
159  const Point& p() { return p_; }
160  bool exists() { return v_; }
161 
162  protected:
163  Point p_;
164  bool v_;
165  };
166 
167 }
168 
169 #else // __cplusplus
170 
171 
172 
173 #endif // __cplusplus
174 
175 #endif
SAGITTARIUS_REAL Real
Make Real visible to C. Consider letting Real lie in top namespace.
Definition: SagittariusCommon.h:136
Sign & magnitude for reals.
Definition: SagittariusCommon.cpp:38
A box.
First file included.