ID:195025
 
//Title: Trigonometry Functions
//Credit to: Toadfish

proc/tan(theta) return sin(theta) / cos(theta)
proc/cot(theta) return cos(theta) / sin(theta)
proc/sec(theta) return 1 / cos(theta)
proc/csc(theta) return 1 / sin(theta)
proc/arctan(x) return arccos(1 / sqrt(1+x*x))
proc/arccot(x) return arcsin(1 / sqrt(1+x*x))
proc/arcsec(x) return arccos(1 / x)
proc/arccsc(x) return arcsin(1 / x)


I don't remember what the snippet standards are but the syntax and meaning of the procs is self apparent. If Spuzzum comes back to life to take revenge on me, so be it!
Toadfish wrote:
If Spuzzum comes back to life to take revenge on me, so be it!

A Zombie Gibson appears!
Zombie Gibson uses Ninja Edit.
It was very successful.
Zombie Gibson runs away!
In response to Jtgibson
And I would've gotten away with it if it weren't for those meddling ninja zombies!