IPovrayColorConstants.java from PovClipse at Krugle
Show IPovrayColorConstants.java syntax highlighted
/*
* PovClipse - Eclipse plugin for editing and rendering Povray sceene files.
* Copyright (C) 2006-2007 Wolfgang Moestl wmoestl@web.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
* of the License, or (at your option) any later version.
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
package com.wm.povclipse.common;
//import org.eclipse.swt.graphics.RGB;
/**
* @author Wolfgang Möstl
*/
public interface IPovrayColorConstants {
/*
RGB COMMENT = new RGB(0, 128, 0);
RGB KEYWORD_GRADIENT = new RGB( 96, 96, 96);
RGB KEYWORD_COMMON = new RGB(128, 128, 128);
RGB KEYWORD_MODIFIER = new RGB(194, 128, 128);
RGB KEYWORD_OBJECT = new RGB(128, 194, 128);
RGB KEYWORD_MATH = new RGB(128, 128, 194);
RGB KEYWORD_TEXTURE = new RGB(194, 128, 194);
RGB KEYWORD_COLOR = new RGB(128, 194, 194);
RGB STRING = new RGB(128, 0, 0);
RGB NUMBER = new RGB(0, 225, 225);
RGB DEFAULT = new RGB(0, 0, 0);
RGB BRACKET_SPITZ = new RGB(194, 0, 0);
RGB BRACKET_GESCHWEIFT = new RGB(0, 0, 128);
*/
}
See more files for this project here