Stay organized with collections
Save and categorize content based on your preferences.
blockly > utils > math > clamp
utils.math.clamp() function
Clamp the provided number between the lower bound and the upper bound.
Signature:
export declare function clamp(lowerBound: number, number: number, upperBound: number): number;
Parameters
Parameter |
Type |
Description |
lowerBound |
number |
The desired lower bound. |
number |
number |
The number to clamp. |
upperBound |
number |
The desired upper bound. |
Returns:
number
The clamped number.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-09-18 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-18 UTC."],[[["The `utils.math.clamp()` function constrains a given number within specified lower and upper bounds."],["It accepts three parameters: `lowerBound`, `number`, and `upperBound`, all of which are numeric values."],["The function returns the original `number` if it falls within the bounds, otherwise it returns the nearest bound."]]],[]]