Triton
Visual simulation library for ocean rendering.
CoordinateSystem.h
1// Copyright (c) 2011-2016 Sundog Software LLC. All rights reserved worldwide.
2
3#ifndef TRITON_COORDINATESYSTEM_H
4#define TRITON_COORDINATESYSTEM_H
5
6#ifdef SWIG
7%module TritonCoordinateSystem
8#define TRITONAPI
9%{
10#include "CoordinateSystem.h"
11using namespace Triton;
12%}
13#endif
14
15namespace Triton
16{
20enum CoordinateSystem {
21 WGS84_ZUP,
22 WGS84_YUP,
23 SPHERICAL_ZUP,
24 SPHERICAL_YUP,
25 FLAT_ZUP,
26 FLAT_YUP,
27};
28}
29
30
31#endif