14 lines
485 B
GLSL
14 lines
485 B
GLSL
// -----------------------------------------------------------------------------
|
|
// Copyright (c) 2009-2016 Nicolas P. Rougier. All rights reserved.
|
|
// Distributed under the (new) BSD License.
|
|
// -----------------------------------------------------------------------------
|
|
|
|
#ifndef _GLUMPY__GEO_POSITION_STRUCT__
|
|
#define _GLUMPY__GEO_POSITION_STRUCT__
|
|
struct GeoPosition
|
|
{
|
|
float longitude;
|
|
float latitude;
|
|
bool frozen; // Prevent further transformation if true
|
|
};
|
|
#endif |