source: branches/blt4/packages/vizservers/vtkvis/RpTypes.h @ 2742

Last change on this file since 2742 was 2682, checked in by gah, 13 years ago
File size: 457 bytes
Line 
1/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2/*
3 * Copyright (C) 2011, Purdue Research Foundation
4 *
5 * Author: Leif Delgass <ldelgass@purdue.edu>
6 */
7
8#ifndef __RAPPTURE_VTKVIS_TYPES_H__
9#define __RAPPTURE_VTKVIS_TYPES_H__
10
11namespace Rappture {
12namespace VtkVis {
13
14    enum Axis {
15        X_AXIS,
16        Y_AXIS,
17        Z_AXIS
18    };
19
20    enum PrincipalPlane {
21        PLANE_XY,
22        PLANE_ZY,
23        PLANE_XZ
24    };
25
26}
27}
28
29#endif
Note: See TracBrowser for help on using the repository browser.