radar-gi/shaders/geo-position-struct.glsl
2024-07-10 15:49:05 +08:00

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