MCPcopy Index your code
hub / github.com/processing/processing / sqrt

Method sqrt

core/src/processing/core/PApplet.java:4495–4497  ·  view source on GitHub ↗

( 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)

Source from the content-addressed store, hash-verified

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 )

Callers 15

rotateImplMethod · 0.95
cameraMethod · 0.95
calcTriangleNormalMethod · 0.95
calcPolyNormalMethod · 0.95
addLineSegment2DMethod · 0.95
vertexMethod · 0.95
PShapeSVGMethod · 0.95
parsePathArctoMethod · 0.95
distMethod · 0.95
rotateMethod · 0.95
rotateMethod · 0.95
hypotMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected