001/**
002 * RenderType -- An enumeration of render types.
003 * 
004 * Copyright (C) 2009-2015, by Joseph A. Huwaldt. All rights reserved.
005 * 
006 * This library is free software; you can redistribute it and/or modify it under the terms
007 * of the GNU Lesser General Public License as published by the Free Software Foundation;
008 * either version 2.1 of the License, or (at your option) any later version.
009 * 
010 * This library is distributed in the hope that it will be useful, but WITHOUT ANY
011 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
012 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
013 * 
014 * You should have received a copy of the GNU Lesser General Public License along with
015 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place -
016 * Suite 330, Boston, MA 02111-1307, USA. Or visit: http://www.gnu.org/licenses/lgpl.html
017 */
018package geomss.j3d;
019
020/**
021 * An enumeration of render type codes.
022 * 
023 * <p> Modified by: Joseph A.Huwaldt </p>
024 * 
025 * @author Joseph A. Huwaldt, Date: April 18, 2009
026 * @version September 6, 2015
027 */
028public enum RenderType {
029    SOLID_PLUS_WIREFRAME,
030    SOLID,
031    WIREFRAME,
032    STRINGS,
033    POINTS;
034}