remove temporary simgear workaround
This commit is contained in:
parent
7138b8509c
commit
9a78c73606
1 changed files with 0 additions and 15 deletions
|
@ -2,21 +2,6 @@
|
|||
|
||||
#include "texparams.hxx"
|
||||
|
||||
// TEMP TEMP TEMP : Need to get my merge request into simgear
|
||||
|
||||
inline void sgReadGeod ( gzFile fd, SGGeod& var ) {
|
||||
double data[3];
|
||||
sgReadDouble ( fd, 3, data );
|
||||
var = SGGeod::fromDegM( data[0], data[1], data[2] );
|
||||
}
|
||||
inline void sgWriteGeod ( gzFile fd, const SGGeod& var ) {
|
||||
sgWriteDouble( fd, var.getLongitudeDeg() );
|
||||
sgWriteDouble( fd, var.getLatitudeDeg() );
|
||||
sgWriteDouble( fd, var.getElevationM() );
|
||||
}
|
||||
|
||||
// TEMP TEMP TEMP
|
||||
|
||||
// Send a TexParam to standard output.
|
||||
std::ostream& operator << (std::ostream &output, const TGTexParams &tp)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue