1 /* === S Y N F I G ========================================================= */
3 ** \brief Various discreet type definitions
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
10 ** This package is free software; you can redistribute it and/or
11 ** modify it under the terms of the GNU General Public License as
12 ** published by the Free Software Foundation; either version 2 of
13 ** the License, or (at your option) any later version.
15 ** This package is distributed in the hope that it will be useful,
16 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 ** General Public License for more details.
21 /* ========================================================================= */
23 /* === S T A R T =========================================================== */
25 #ifndef __SYNFIG_VECTOR_H
26 #define __SYNFIG_VECTOR_H
28 /* === H E A D E R S ======================================================= */
33 /* === M A C R O S ========================================================= */
39 extern "C" { int _isnan(double x); }
44 // For some reason isnan() isn't working on macosx any more.
45 // This is a quick fix.
46 #if defined(__APPLE__) && !defined(SYNFIG_ISNAN_FIX)
50 inline bool isnan(double x) { return x != x; }
51 inline bool isnan(float x) { return x != x; }
52 #define SYNFIG_ISNAN_FIX 1
56 /* === T Y P E D E F S ===================================================== */
58 /* === C L A S S E S & S T R U C T S ======================================= */
68 typedef Real value_type;
74 Vector(): _x(0.0), _y(0.0) { };
75 Vector(const value_type &x, const value_type &y):_x(x),_y(y) { };
77 bool is_valid()const { return !(isnan(_x) || isnan(_y)); }
80 operator[](const int& i)
84 operator[](const int& i) const
88 operator+=(const Vector &rhs)
96 operator-=(const Vector &rhs)
104 operator*=(const value_type &rhs)
112 operator/=(const value_type &rhs)
114 value_type tmp=1.0/rhs;
121 operator+(const Vector &rhs)const
122 { return Vector(*this)+=rhs; }
125 operator-(const Vector &rhs)const
126 { return Vector(*this)-=rhs; }
129 operator*(const value_type &rhs)const
130 { return Vector(*this)*=rhs; }
133 operator/(const value_type &rhs)const
134 { return Vector(*this)/=rhs; }
138 { return Vector(-_x,-_y); }
141 operator*(const Vector &rhs)const
142 { return _x*rhs._x+_y*rhs._y; }
145 operator==(const Vector &rhs)const
146 { return _x==rhs._x && _y==rhs._y; }
149 operator!=(const Vector &rhs)const
150 { return _y!=rhs._y || _x!=rhs._x; }
152 //! Returns the squared magnitude of the vector
153 value_type mag_squared()const
154 { return _x*_x+_y*_y; }
156 //! Returns the magnitude of the vector
157 value_type mag()const
158 { return sqrt(mag_squared()); }
160 //! Returns the reciprocal of the magnitude of the vector
161 value_type inv_mag()const
162 { return 1.0/sqrt(mag_squared()); }
164 //! Returns a normalized version of the vector
166 { return (*this)*inv_mag(); }
168 //! Returns a perpendicular version of the vector
170 { return Vector(_y,-_x); }
172 bool is_equal_to(const Vector& rhs)const
174 static const value_type epsilon(0.0000000000001);
175 // return (_x>rhs._x)?_x-rhs._x<=epsilon:rhs._x-_x<=epsilon && (_y>rhs._y)?_y-rhs._y<=epsilon:rhs._y-_y<=epsilon;
176 return (*this-rhs).mag_squared()<=epsilon;
179 static const Vector zero() { return Vector(0,0); }
185 typedef Vector Point;
189 }; // END of namespace synfig
193 inline synfig::Vector::value_type
194 abs(const synfig::Vector &rhs)
195 { return rhs.mag(); }
197 }; // END of namespace std
199 #include <ETL/bezier>
204 class bezier_base<synfig::Vector,float> : public std::unary_function<float,synfig::Vector>
207 typedef synfig::Vector value_type;
208 typedef float time_type;
211 bezier_base<synfig::Vector::value_type,time_type> bezier_x,bezier_y;
216 affine_combo<value_type,time_type> affine_func;
221 const value_type &a, const value_type &b, const value_type &c, const value_type &d,
222 const time_type &r=0.0, const time_type &s=1.0):
223 a(a),b(b),c(c),d(d) { set_rs(r,s); sync(); }
227 bezier_x[0]=a[0],bezier_y[0]=a[1];
228 bezier_x[1]=b[0],bezier_y[1]=b[1];
229 bezier_x[2]=c[0],bezier_y[2]=c[1];
230 bezier_x[3]=d[0],bezier_y[3]=d[1];
236 operator()(time_type t)const
238 return synfig::Vector(bezier_x(t),bezier_y(t));
241 void evaluate(time_type t, value_type &f, value_type &df) const
243 t=(t-get_r())/get_dt();
245 const value_type p1 = affine_func(
249 const value_type p2 = affine_func(
254 f = affine_func(p1,p2,t);
258 void set_rs(time_type new_r, time_type new_s) { bezier_x.set_rs(new_r,new_s); bezier_y.set_rs(new_r,new_s); }
259 void set_r(time_type new_r) { bezier_x.set_r(new_r); bezier_y.set_r(new_r); }
260 void set_s(time_type new_s) { bezier_x.set_s(new_s); bezier_y.set_s(new_s); }
261 const time_type &get_r()const { return bezier_x.get_r(); }
262 const time_type &get_s()const { return bezier_x.get_s(); }
263 time_type get_dt()const { return bezier_x.get_dt(); }
270 operator[](int i) const
273 //! Bezier curve intersection function
274 time_type intersect(const bezier_base<value_type,time_type> &x, time_type near=0.0)const
283 /* === E N D =============================================================== */