Last change
on this file since 4636 was
3998,
checked in by ldelgass, 11 years ago
|
Add prelimilary skeleton for geovis map rendering server. Not functional, not
integrated into configure, etc.
|
File size:
418 bytes
|
Line | |
---|
1 | /* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */ |
---|
2 | /* |
---|
3 | * Copyright (C) 2004-2013 HUBzero Foundation, LLC |
---|
4 | * |
---|
5 | * Author: Leif Delgass <ldelgass@purdue.edu> |
---|
6 | */ |
---|
7 | |
---|
8 | #ifndef GEOVIS_TYPES_H |
---|
9 | #define GEOVIS_TYPES_H |
---|
10 | |
---|
11 | namespace GeoVis { |
---|
12 | |
---|
13 | enum Axis { |
---|
14 | X_AXIS = 0, |
---|
15 | Y_AXIS, |
---|
16 | Z_AXIS |
---|
17 | }; |
---|
18 | |
---|
19 | enum PrincipalPlane { |
---|
20 | PLANE_XY = 0, |
---|
21 | PLANE_ZY, |
---|
22 | PLANE_XZ |
---|
23 | }; |
---|
24 | |
---|
25 | } |
---|
26 | |
---|
27 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.