# 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: JavaView.def 5894 2005-03-18 14:10:24Z thilosch $ package JavaView::default; use strict; # Notice: the color values set as default here are not the default color values for polymake. # The values set here are only used if JavaView.pm is used independently of polymake. # See ~/.polymake/customize.pl for polymake's color defaults. use vars qw( $points_color $faces_color $lines_color $points_thickness $lines_thickness $diffuseColor $emissiveColor $shininess $specularColor $transparency); $points_color = "255 0 0"; # red $faces_color = "0 255 0"; # green $lines_color = "0 0 255"; # blue $points_thickness = "4.0"; $lines_thickness = "3.0"; $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: