Coding
Appearance
Look up coding in Wiktionary, the free dictionary.
Coding may refer to: float x, y, speedX, speedY; float diam = 10; float rectSize = 200;
void setup() {
fullScreen(); fill(0, 255, 0); reset();
}
void reset() {
x = width/2; y = height/2; speedX = random(3, 5); speedY = random(3, 5);
}
void draw() {
background(0); ellipse(x, y, diam, diam);
rect(0, 0, 20, height); rect(width-30, mouseY-rectSize/2, 10, rectSize);
x += speedX; y += speedY;
// if ball hits movable bar, invert X direction if ( x > width-30 && x < width -20 && y > mouseY-rectSize/2 && y < mouseY+rectSize/2 ) { speedX = speedX * -1; }
// if ball hits wall, change direction of X if (x < 25) { speedX *= -1.1; speedY *= 1.1; x += speedX; }
// if ball hits up or down, change direction of Y if ( y > height || y < 0 ) { speedY *= -1; }
}
void mousePressed() {
reset();
}
Computer science
- Computer programming, the process of creating and maintaining the source code of computer programs
- Line coding, in data storage
- Source coding, compression used in data transmission
- Coding theory
- Channel coding
Other uses
- Coding (social sciences), an analytical process in which data are categorized for analysis
- Coding strand of DNA in molecular biology
- Legal coding, the process of creating summary or keyword data from a document in the legal profession
- Medical coding, representation of medical diagnoses and procedures in standard code numbers
- Number coding in Metro Manila, a road space rationing policy implemented in Metro Manila, Philippines, commonly referred to as "coding"
- Coding (therapy), alternative therapeutic methods used to treat addictions in the post-Soviet countries
- Queer coding