Added osgTerrain::EllipsodeTransform helper class for converting to and from

lat, long, height to geocentric X,Y,Z and back.
This commit is contained in:
Robert Osfield
2004-03-31 15:50:30 +00:00
parent 663801c0c8
commit b67858f388
3 changed files with 88 additions and 18 deletions

View File

@@ -15,13 +15,11 @@
using namespace osgTerrain;
CoordinateSystem::CoordinateSystem():
_type(GEOGRAPHIC)
CoordinateSystem::CoordinateSystem()
{
}
CoordinateSystem::CoordinateSystem(const std::string& WKT, Type type):
_type(type),
CoordinateSystem::CoordinateSystem(const std::string& WKT):
_WKT(WKT)
{
}