# Copyright (c) 1997-2004 # Ewgenij Gawrilow, Michael Joswig (Technische Universitaet Berlin, Germany) # http://www.math.tu-berlin.de/polymake, mailto:polymake@math.tu-berlin.de # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; either version 2, or (at your option) any # later version: http://www.gnu.org/licenses/gpl.txt. # # This program 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 # GNU General Public License for more details. #----------------------------------------------------------------------------- # $Project: polymake $$Id: JReality.def 6168 2005-06-14 11:33:43Z wotzlaw $ package JReality::default; use strict; use vars qw( $points_color $faces_color $lines_color $points_thickness $lines_thickness $diffuseColor $emissiveColor $shininess $specularColor $transparency); $points_color = "140 140 140"; $faces_color = "119 236 158"; $lines_color = "200 0 0"; $points_thickness = "1.0"; $lines_thickness = "0.5"; ## not used so far $diffuseColor = "204 204 204"; $emissiveColor = "0 0 0"; $shininess = 10.0; $specularColor = "255 255 255"; $transparency = 0.8; # Local Variables: # mode: perl # c-basic-offset:3 # End: