Functions in processing
in
Programming Questions
•
1 year ago
Let's say you have a function
void funct(int whatnot, int whatelsenot)
{
whatnot = whatelsenot;
}
having executed funct, if you access whatnot now from somewhere in the script, will it contain whatelsenot?
If it is
void funct(int whatnot, int whatelsenot)
{
int whatever = 4;
whatnot = whatelsenot * whatever;
}
will you have access to whatever from anywhere in the script?
----------------------------------------
http://orlandorath.cwsurf.de/forum/index.php - Kinect Development Forum
1