source: trunk/packages/vizservers/vtkvis/Types.h @ 4609

Last change on this file since 4609 was 3616, checked in by ldelgass, 11 years ago

Remove Rp from vtkvis filenames

  • Property svn:eol-style set to native
File size: 418 bytes
Line 
1/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2/*
3 * Copyright (C) 2004-2012  HUBzero Foundation, LLC
4 *
5 * Author: Leif Delgass <ldelgass@purdue.edu>
6 */
7
8#ifndef VTKVIS_TYPES_H
9#define VTKVIS_TYPES_H
10
11namespace VtkVis {
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.