Loading...
Processing Forum
Recent Topics
All Forums
Screen name:
briziel
briziel's Profile
2
Posts
3
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
Exporting signed package is not yet implemented
[4 Replies]
17-Jan-2013 07:06 AM
Forum:
Android Processing
hi,
i am trying to make my first android app with processing. i installed the android sdk und processing 2.07.
i dont get why "Exporting signed package is not yet implemented" appears.
any solutions?
fab
only draw when mousepos has an exact angle to a point
[3 Replies]
20-Nov-2011 07:29 PM
Forum:
Programming Questions
hi!
i just write this code. at the moment it draws the "wheel spokes" in irregular gaps. i hope there is a possibility to add steps. for example every 15° a spoke. i really want to end the dependence on the framerate!
this is my code:
void setup()
{
size(1000,1000);
stroke(20);
smooth();
frameRate(200);
rect(490,90,20,20);
}
void draw()
{
int posX = 500 - mouseX;
if (posX < 0) {
posX = 0 - posX;
}
int posY = 500 - mouseY;
if (posY < 0) {
posY = 0 - posY;
}
float a2 = sq(posX);
float b2 = sq(posY);
float c2 = sqrt(a2 + b2);
int c22 = (int)c2;
if(mousePressed) {
stroke(180);
line(500, 500, mouseX, mouseY);
stroke(204, 102, 0);
line(pmouseX, pmouseY, mouseX, mouseY);
println(c22);
}
}
«Prev
Next »
Moderate user : briziel
Forum