Facilitates exponential expressions. The pow() function is an efficient way of multiplying numbers by themselves (or their reciprocal) in large quantities. For example, pow(3, 5) is equivalent to the expression 3 3 3 3 3 and pow(3, -5) is equivalent to 1 / 3 3 3 3 3. @webref ma
(float n, float e)
| 4113 | * @see PApplet#sqrt(float) |
| 4114 | */ |
| 4115 | static public final float pow(float n, float e) { |
| 4116 | return (float)Math.pow(n, e); |
| 4117 | } |
| 4118 | |
| 4119 | /** |
| 4120 | * |