MCPcopy Index your code
hub / github.com/benfry/processing4 / tan

Method tan

core/src/processing/core/PApplet.java:4367–4369  ·  view source on GitHub ↗

Calculates the ratio of the sine and cosine of an angle. This function expects the values of the angle parameter to be provided in radians (values from 0 to PI 2). Values are returned in the range infinity to -infinity . @webref math:trigonometry @webBrief Calculates the ratio o

(float angle)

Source from the content-addressed store, hash-verified

4365 * @see PApplet#radians(float)
4366 */
4367 static public final float tan(float angle) {
4368 return (float)Math.tan(angle);
4369 }
4370
4371/**
4372 *

Callers 10

parsePathArctoMethod · 0.95
parseSingleTransformMethod · 0.95
setSizeMethod · 0.45
shearXMethod · 0.45
shearYMethod · 0.45
perspectiveMethod · 0.45
shearXMethod · 0.45
shearYMethod · 0.45
shearXMethod · 0.45
shearYMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected