00001 /* 00002 Copyright (C) 1999 Carsten Winkelholz 00003 00004 Malte Weiß, 17.07.2002: OpenGL support nearly completed. 00005 All fields beside 'convex' are rendered. 00006 18.07.2002: Moved geometry creation to CybExtrusionC 00007 19.07.2002: Concave polygons supported. 00008 Field 'solid' supported. 00009 00010 Address: FGAN Forschungsgesellschaft für Angewandte Naturwissenschaften e. V. 00011 Neuenahrer Str. 20 00012 D - 53343 Wachtberg 00013 00014 Email: winkelholz@fgan.de 00015 00016 This program is free software; you can redistribute it and/or 00017 modify it under the terms of the GNU General Public License 00018 as published by the Free Software Foundation; either version 2 00019 of the License, or (at your option) any later version. 00020 00021 This program is distributed in the hope that it will be useful, 00022 but WITHOUT ANY WARRANTY; without even the implied warranty of 00023 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00024 GNU General Public License for more details. 00025 00026 You should have received a copy of the GNU General Public License 00027 along with this program; if not, write to the Free Software 00028 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00029 */ 00030 00031 #ifndef CYBGLEXTRUSION_HC 00032 #define CYBGLEXTRUSION_HC 00033 00034 #include "oaw/ctk/cybextrusionc.h" 00035 #include "../oawconfig.h" 00036 00037 OAW_BEGIN_NAMESPACE 00038 00039 // Class definition 00040 00041 class OAW_DLLMAPPING CybGLExtrusionC : public CybExtrusionC 00042 { 00043 public: 00044 CybGLExtrusionC(CybWorldC*); 00045 00046 virtual void ToChannelDefault(CybChannelC*,long flag); 00047 virtual void ToChannelTexture(CybChannelC*,long flag); 00048 }; 00049 00050 OAW_END_NAMESPACE 00051 00052 #endif 00053 00054 00055 00056
1.3-rc2