Cogs.Core
Extensions
Terrain
Source
GeodeticExtent.h
1
#pragma once
2
3
#include "CogsTerrainBase.h"
4
5
#include <glm/vec4.hpp>
6
7
namespace
Cogs
8
{
10
struct
COGSTERRAIN_API
GeodeticExtent
:
public
glm::dvec4
11
{
12
GeodeticExtent
(
double
x,
double
y,
double
z,
double
w) : glm::dvec4(x, y, z, w) {}
13
14
double
getWest(
void
)
const
{
return
x; }
15
double
getEast(
void
)
const
{
return
z; }
16
double
getNorth(
void
)
const
{
return
w; }
17
double
getSouth(
void
)
const
{
return
y; }
18
};
19
}
Cogs
Contains all Cogs related functionality.
Definition:
FieldSetter.h:23
Cogs::GeodeticExtent
Extent in terrain reference system coordinates.
Definition:
GeodeticExtent.h:11
Generated by
1.9.6