Loading...
Processing Forum
Recent Topics
All Forums
Screen name:
Raul Rivas
Raul Rivas's Profile
1
Posts
1
Responses
0
Followers
Activity Trend
Last 30 days
Last 30 days
Date Interval
From Date :
To Date :
Go
Loading Chart...
Posts
Responses
PM
Show:
All
Discussions
Questions
Expanded view
List view
Private Message
Function text() not working with P3D
[3 Replies]
21-Aug-2013 08:16 PM
Forum:
Programming Questions
I'm having a little trouble with the text() function in P3D. I don't know what am I doing wrong. This code displays the text:
void setup() {
size(200, 200);
stroke(0);
textSize(16);
}
void draw() {
background(255);
fill(0);
text("hey!", 50, 50);
}
But this don't:
void setup() {
size(200, 200, P3D);
stroke(0);
textSize(16);
}
void draw() {
background(255);
fill(0);
text("hey!", 50, 50);
}
The code from here won't work for me neither:
http://processing.org/reference/text_.html
I'm using Processing 2.0.2.
I'm sorry if it's something very obvious, but I don't know why it doesn't work!
Thank you.
«Prev
Next »
Moderate user : Raul Rivas
Forum