FAQ
Cover
This is the archive Discourse for the Processing (ALPHA) software.
Please visit the new Processing forum for current information.

   Processing 1.0 _ALPHA_
   Programming Questions & Help
   Syntax
(Moderators: fry, REAS)
   HELP
« Previous topic | Next topic »

Pages: 1 
   Author  Topic: HELP  (Read 236 times)
robertaP


HELP
« on: May 20th, 2004, 7:23pm »

Need to know how can i get rid of the error message...
thanks in advance,
roberta
 
 
// initialize
// ************************************************************************  
boolean mouseStatus = false;
boolean priorMouseStatus = false;
int x, y, z;
int i, j, k;
float counter=1;
String time,s_hour,s_min, s_sec;
float pos_x, pos_y;
float radius;
float SECOND_INC = .0166; // 1/60
float MINUTE_INC = .0166; // 1/60
float HOUR_INC = .0833;  // 1/12
float current_sec, current_min, current_hr;
float radian_percentage;
// ************************************************************************  
// set up
// ************************************************************************  
void setup() {
 size(400, 400);
 background(255);
 
 
 BFont ocr;
 ocr = loadFont("OCR-B.vlw.gz");
 setFont(ocr, 16);
 ellipseMode(CENTER_DIAMETER);
 rectMode(CENTER_DIAMETER);
}
 
// ************************************************************************  
 
lunetta

7200475272004752 WWW Email
Re: HELP
« Reply #1 on: May 20th, 2004, 8:02pm »

setFont?
 
wouldn't it be textFont instead?
 
Roberta
Guest
Email
Re: HELP
« Reply #2 on: May 21st, 2004, 1:17am »

Thanks a lot.  It worked.  
 
Pages: 1 

« Previous topic | Next topic »