1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
/**
* \file NETGeographicLib/CircularEngine.cpp
* \brief Implementation for NETGeographicLib::CircularEngine class
*
* NETGeographicLib is copyright (c) Scott Heiman (2013)
* GeographicLib is Copyright (c) Charles Karney (2010-2012)
* <charles@karney.com> and licensed under the MIT/X11 License.
* For more information, see
* http://geographiclib.sourceforge.net/
**********************************************************************/
#include "stdafx.h"
#include "GeographicLib/CircularEngine.hpp"
#include "CircularEngine.h"
#include "NETGeographicLib.h"
using namespace NETGeographicLib;
//*****************************************************************************
CircularEngine::CircularEngine(const GeographicLib::CircularEngine& c)
{
try
{
m_pCircularEngine = new GeographicLib::CircularEngine( c );
}
catch ( GeographicLib::GeographicErr err )
{
throw gcnew GeographicErr( err.what() );
}
catch ( std::bad_alloc )
{
throw gcnew GeographicErr( "Failed to allocate memory for a GeographicLib::CircularEngine" );
}
}
//*****************************************************************************
CircularEngine::!CircularEngine()
{
if ( m_pCircularEngine != NULL )
{
delete m_pCircularEngine;
m_pCircularEngine = NULL;
}
}
//*****************************************************************************
double CircularEngine::LongitudeSum(double coslon, double sinlon)
{
return m_pCircularEngine->operator()( coslon, sinlon );
}
//*****************************************************************************
double CircularEngine::LongitudeSum(double lon)
{
return m_pCircularEngine->operator()( lon );
}
//*****************************************************************************
double CircularEngine::LongitudeSum(double coslon, double sinlon,
[System::Runtime::InteropServices::Out] double% gradx,
[System::Runtime::InteropServices::Out] double% grady,
[System::Runtime::InteropServices::Out] double% gradz)
{
double lgradx, lgrady, lgradz;
double output = m_pCircularEngine->operator()( coslon, sinlon, lgradx, lgrady, lgradz );
gradx = lgradx;
grady = lgrady;
gradz = lgradz;
return output;
}
//*****************************************************************************
double CircularEngine::LongitudeSum(double lon,
[System::Runtime::InteropServices::Out] double% gradx,
[System::Runtime::InteropServices::Out] double% grady,
[System::Runtime::InteropServices::Out] double% gradz)
{
double lgradx, lgrady, lgradz;
double output = m_pCircularEngine->operator()( lon, lgradx, lgrady, lgradz );
gradx = lgradx;
grady = lgrady;
gradz = lgradz;
return output;
}
|