constrain()

Category: Math

Subcategory: Calculation

Complexity: Intermediate

Description

Constrains a value to not exceed a maximum and minimum value.

Related

Example

Code:
void draw() 
{ 
  background(204);
  float mx = constrain(mouseX, 30, 70);
  rect(mx-10, 40, 20, 20);
}
Preview: