/* Vob3.java * * Copyright (c) 2000-2001, Ted Nelson and Tuomas Lukka * * You may use and distribute under the terms of either the GNU Lesser * General Public License, either version 2 of the license or, * at your choice, any later version. Alternatively, you may use and * distribute under the terms of the XPL. * * See the LICENSE.lgpl and LICENSE.xpl files for the specific terms of * the licenses. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the README * file for more details. * */ package gzz.vob; /** Vob interface extension for handling renderables using three * coordinate systems (renderable3s). */ public interface Vob3 { public static final String rcsid = "$Id: Vob3.java,v 1.1 2002/10/02 11:43:44 humppake Exp $"; /** For OpenGL: Add the current vob to the given display list, using * the given coordinate systems. */ public int addToListGL(gzz.client.GraphicsAPI.Window win, int[] list, int curs, int coordsys1, int coordsys2, int coordsys3); }