Calculates the square root of a number. The square root of a number is always positive, even though there may be a valid negative root. The square root s of number a is such that s s = a . It is the opposite of squaring. @webref math:calculation @webBrief Calculates the square r
(float n)
| 4068 | * @see PApplet#sq(float) |
| 4069 | */ |
| 4070 | static public final float sqrt(float n) { |
| 4071 | return (float)Math.sqrt(n); |
| 4072 | } |
| 4073 | |
| 4074 | /** |
| 4075 | * |
no outgoing calls
no test coverage detected