OpenSceneGraph/src/osg/CoordinateSystemNode.cpp

76 lines
2.1 KiB
C++
Raw Normal View History

2006-07-18 23:21:48 +08:00
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
2004-04-30 06:16:50 +08:00
*
* This library is open source and may be redistributed and/or modified under
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
* (at your option) any later version. The full license is in LICENSE file
* included with this distribution, and on the openscenegraph.org website.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* OpenSceneGraph Public License for more details.
*/
#include <osg/CoordinateSystemNode>
2004-06-09 23:00:03 +08:00
#include <osg/Notify>
2004-04-30 06:16:50 +08:00
using namespace osg;
CoordinateSystemNode::CoordinateSystemNode()
{
}
2004-06-09 23:00:03 +08:00
CoordinateSystemNode::CoordinateSystemNode(const std::string& format, const std::string& cs):
_format(format),
_cs(cs)
2004-04-30 06:16:50 +08:00
{
}
CoordinateSystemNode::CoordinateSystemNode(const CoordinateSystemNode& csn,const osg::CopyOp& copyop):
2004-06-09 23:00:03 +08:00
Group(csn,copyop),
_format(csn._format),
_cs(csn._cs),
_ellipsoidModel(csn._ellipsoidModel)
2004-04-30 06:16:50 +08:00
{
}
void CoordinateSystemNode::set(const CoordinateSystemNode& csn)
{
_format = csn._format;
_cs = csn._cs;
_ellipsoidModel = csn._ellipsoidModel;
}
CoordinateFrame CoordinateSystemNode::computeLocalCoordinateFrame(const Vec3d& position) const
2004-04-30 06:16:50 +08:00
{
if (_ellipsoidModel.valid())
{
Matrixd localToWorld;
2004-06-09 23:00:03 +08:00
double latitude, longitude, height;
_ellipsoidModel->convertXYZToLatLongHeight(position.x(),position.y(),position.z(),latitude, longitude, height);
_ellipsoidModel->computeLocalToWorldTransformFromLatLongHeight(latitude, longitude, 0.0f, localToWorld);
2004-04-30 06:16:50 +08:00
return localToWorld;
}
else
{
2004-06-09 23:00:03 +08:00
return Matrixd::translate(position.x(),position.y(),0.0f);
2004-04-30 06:16:50 +08:00
}
}
osg::Vec3d CoordinateSystemNode::computeLocalUpVector(const Vec3d& position) const
2004-04-30 06:16:50 +08:00
{
if (_ellipsoidModel.valid())
{
return _ellipsoidModel->computeLocalUpVector(position.x(),position.y(),position.z());
2004-04-30 06:16:50 +08:00
}
else
{
return osg::Vec3d(0.0f,0.0f,1.0f);
2004-04-30 06:16:50 +08:00
}
}