]> git.mxchange.org Git - simgear.git/blob - simgear/math/SGLineSegment.hxx
Merge branch 'maint' into next
[simgear.git] / simgear / math / SGLineSegment.hxx
1 // Copyright (C) 2006  Mathias Froehlich - Mathias.Froehlich@web.de
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Library General Public
5 // License as published by the Free Software Foundation; either
6 // version 2 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Library General Public License for more details.
12 //
13 // You should have received a copy of the GNU General Public License
14 // along with this program; if not, write to the Free Software
15 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
16 //
17
18 #ifndef SGLineSegment_H
19 #define SGLineSegment_H
20
21 template<typename T>
22 class SGLineSegment {
23 public:
24   SGLineSegment()
25   { }
26   SGLineSegment(const SGVec3<T>& start, const SGVec3<T>& end) :
27     _start(start),
28     _direction(end - start)
29   { }
30
31   void set(const SGVec3<T>& start, const SGVec3<T>& end)
32   { _start = start; _direction = end - start; }
33
34   const SGVec3<T>& getStart() const
35   { return _start; }
36   SGVec3<T> getEnd() const
37   { return _start + _direction; }
38   const SGVec3<T>& getDirection() const
39   { return _direction; }
40   SGVec3<T> getNormalizedDirection() const
41   { return normalize(getDirection()); }
42
43   SGVec3<T> getCenter() const
44   { return _start + T(0.5)*_direction; }
45
46 private:
47   SGVec3<T> _start;
48   SGVec3<T> _direction;
49 };
50
51 /// Output to an ostream
52 template<typename char_type, typename traits_type, typename T>
53 inline
54 std::basic_ostream<char_type, traits_type>&
55 operator<<(std::basic_ostream<char_type, traits_type>& s,
56            const SGLineSegment<T>& lineSegment)
57 {
58   return s << "line segment: start = " << lineSegment.getStart()
59            << ", end = " << lineSegment.getEnd();
60 }
61
62 #endif