dist()MathCalculationWeb & Applicationdist_.jar
// Sets the background gray value based on
// the distance of the mouse from the center
void loop() {
float d = dist(50, 50, mouseX, mouseY);
fill(d*4);
rect(0, 0, 99, 99);
}
Calculates the distance between two points.
dist(x1, y1, x2, y2);
dist(x1, y1, z1, x2, y2, z2);
int or float: x-coordinate of the first pointint or float: y-coordinate of the first pointint or float: z-coordinate of the first pointint or float: x-coordinate of the second pointint or float: y-coordinate of the second pointint or float: z-coordinate of the second pointfloat1.0FunctionPDE