Parameters & Returns
Parameters
Returns
Quick Summary
Returns the square root of a number.
Takes value (number).
Returns the square root.
Technical Exegesis...
Returns the non-negative square root of the input value.
Examples: mathSqr(9.0) returns 3.0, mathSqr(2.0) returns approximately 1.414
Commonly used for distance calculations, physics simulations, and normalizing vectors.