Skip to content
Permalink
d5b7fb6bb4
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
46 lines (38 sloc) 995 Bytes
// Pallete
color c_WHITE = color (255, 255, 255);
color c_BLACK = color (0, 0, 0);
color c_PROCBLUE = color (5,13,22);
color c_YELLOW = color (215, 255, 0);
// Screen Color
color c_background = color (50, 50, 50);
color c_gnoman = color (255, 130, 130);
// Menu Colors
color c_modeText = c_BLACK;
color c_modeBackground = color (200,200,200,200);
// Help Colors
color c_helpBackground = c_PROCBLUE;
color c_helpStroke = c_BLACK;
color c_helpText = c_WHITE;
int i_helpStrokeWidth = 2;
// Status Colors
color c_statusMode = c_YELLOW;
color c_statusBackground = c_PROCBLUE;
color c_statusText = c_WHITE;
// Point
color c_pointStroke = c_BLACK;
color c_pointDefault = c_WHITE;
color c_pointSelect = color (100, 255, 100);
// Help Strings
int i_helpStrings = 10;
String[] s_helpStrings = {
"h: Toggle Help",
"t: Toggle Console",
"r: Toggle Tree",
"e: Toggle Gnoman",
"f: Scale",
"d: Pan",
"s: Rotate",
"a: Place Point",
"g: Select Point",
"c: Clear Points"
};