( begin auto-generated from sqrt.xml ) 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. ( end auto-generat
(float n)
| 4493 | * @see PApplet#sq(float) |
| 4494 | */ |
| 4495 | static public final float sqrt(float n) { |
| 4496 | return (float)Math.sqrt(n); |
| 4497 | } |
| 4498 | |
| 4499 | /** |
| 4500 | * ( begin auto-generated from log.xml ) |
no outgoing calls
no test coverage detected