Absolute
Last updated
Last updated
Returns the absolute (positive) value of a number by removing its sign. This is useful for calculating sizes, distances, or any values where direction doesn't matter.
input
The number to convert to absolute value
Number
Yes
value
The absolute (positive) value of the input
Number
Drag the Absolute node into your graph.
Connect a number (like -484.2
) to the "input".
Run the graph—your output will be 484
.
If you connect a positive number like 5
, it remains 5
.
Use this node when you need to ensure a value is positive, such as for sizes or distances.
Absolute values are useful for calculating differences without caring about which value is larger.
Error Calculations: Find how far a value is from a target without regard to direction.
Asset Sizing: Ensure measurements stay positive even after calculations might result in negative values.
Responsive Design: Calculate size differences between breakpoints regardless of which is larger.
: For setting minimum and maximum bounds on a value.
: For calculating the absolute difference between two numbers.