/*========================================================================= Program: FusionViewer Module: $RCSfile: ViewArrangement.java,v $ Language: Java Date: $Date: 2007/02/02 19:27:57 $ Version: $Revision: 1.2 $ Copyright (c) Insightful Corporation. All rights reserved. See Copyright.txt for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notice for more information. =========================================================================*/ package org.fusionviewer.ui; /**\class ViewArrangement *\brief Possible orientations for images to be acquired in. */ public class ViewArrangement { public static final int AXIAL = 0; public static final int SAGITTAL = 1; public static final int CORONAL = 2; }