OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
GeodesicCoordinate.cpp
Go to the documentation of this file.
1 //----------------------------------------------------------------------------
2 //
3 // "Copyright Centre National d'Etudes Spatiales"
4 //
5 // License: LGPL
6 //
7 // See LICENSE.txt file in the top level directory for more details.
8 //
9 //----------------------------------------------------------------------------
10 // $Id$
11 
12 #include <otb/GeodesicCoordinate.h>
13 
14 namespace ossimplugins
15 {
16 
17 
18 
20 {
21 }
22 
24 {
25 }
26 
27 GeodesicCoordinate::GeodesicCoordinate(double x, double y, double z): Coordinate(x,y,z)
28 {
29 }
30 
32 {
33 }
34 
36 {
37  _x = rhs._x;
38  _y = rhs._x;
39  _z = rhs._x;
40 
41  return *this;
42 }
43 
44 }
ossim_uint32 x
ossim_uint32 y
This class represents a coordinate in a geodesic reference.
This class represents a coordinate.
Definition: Coordinate.h:25
GeodesicCoordinate & operator=(const GeodesicCoordinate &rhs)
Affectation operator.