/Users/enrico/Ricerca/develop/PINS/pins-mechatronix/LibSources/submodules/Clothoids/src/Clothoids/Biarc_compatibility.hxx Source File

Clothoids: /Users/enrico/Ricerca/develop/PINS/pins-mechatronix/LibSources/submodules/Clothoids/src/Clothoids/Biarc_compatibility.hxx Source File
Clothoids
Biarc_compatibility.hxx
1/*--------------------------------------------------------------------------*\
2 | |
3 | Copyright (C) 2017 |
4 | |
5 | , __ , __ |
6 | /|/ \ /|/ \ |
7 | | __/ _ ,_ | __/ _ ,_ |
8 | | \|/ / | | | | \|/ / | | | |
9 | |(__/|__/ |_/ \_/|/|(__/|__/ |_/ \_/|/ |
10 | /| /| |
11 | \| \| |
12 | |
13 | Enrico Bertolazzi |
14 | Dipartimento di Ingegneria Industriale |
15 | Universita` degli Studi di Trento |
16 | email: enrico.bertolazzi@unitn.it |
17 | |
18\*--------------------------------------------------------------------------*/
19
23
24real_type thetaBegin() const { return theta_begin(); }
25real_type thetaEnd() const { return theta_end(); }
26real_type kappaBegin() const { return kappa_begin(); }
27real_type kappaEnd() const { return kappa_end(); }
28real_type xBegin() const { return x_begin(); }
29real_type yBegin() const { return y_begin(); }
30real_type xEnd() const { return x_end(); }
31real_type yEnd() const { return y_end(); }
32real_type xBegin_ISO( real_type offs ) const { return x_begin_ISO( offs ); }
33real_type yBegin_ISO( real_type offs ) const { return y_begin_ISO( offs ); }
34real_type xEnd_ISO( real_type offs ) const { return x_end_ISO( offs ); }
35real_type yEnd_ISO( real_type offs ) const { return y_end_ISO( offs ); }
36
37real_type xMiddle() const { return x_middle(); }
38real_type yMiddle() const { return y_middle(); }
39real_type thetaMiddle() const { return theta_middle(); }
40
42closestPoint_ISO(
43 real_type qx,
44 real_type qy,
45 real_type & x,
46 real_type & y,
47 real_type & s,
48 real_type & t,
49 real_type & dst
50) const {
51 return closest_point_ISO( qx, qy, x, y, s, t, dst );
52}
53
55closestPoint_ISO(
56 real_type qx,
57 real_type qy,
58 real_type offs,
59 real_type & x,
60 real_type & y,
61 real_type & s,
62 real_type & t,
63 real_type & dst
64) const {
65 return closest_point_ISO( qx, qy, offs, x, y, s, t, dst );
66}
67
double real_type
real type number
Definition Clothoids.hh:79
int integer
integer type number
Definition Clothoids.hh:80