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

Clothoids: /Users/enrico/Ricerca/develop/PINS/pins-mechatronix/LibSources/submodules/Clothoids/src/Clothoids/PolyLine_compatibility.hxx Source File
Clothoids
PolyLine_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 this->theta_begin(); }
25real_type thetaEnd() const { return this->theta_end(); }
26real_type xBegin() const { return this->x_begin(); }
27real_type yBegin() const { return this->y_begin(); }
28real_type xEnd() const { return this->x_end(); }
29real_type yEnd() const { return this->y_end(); }
30real_type xBegin_ISO( real_type offs ) const { return this->x_begin_ISO( offs ); }
31real_type yBegin_ISO( real_type offs ) const { return this->y_begin_ISO( offs ); }
32real_type xEnd_ISO( real_type offs ) const { return this->x_end_ISO( offs ); }
33real_type yEnd_ISO( real_type offs ) const { return this->y_end_ISO( offs ); }
34
35integer numSegments() const { return num_segments(); }
36
38closestPoint_ISO(
39 real_type x,
40 real_type y,
41 real_type & X,
42 real_type & Y,
43 real_type & S,
44 real_type & T,
45 real_type & DST
46) const {
47 return this->closest_point_ISO( x, y, X, Y, S, T, DST );
48}
49
double real_type
real type number
Definition Clothoids.hh:79
int integer
integer type number
Definition Clothoids.hh:80