Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions Triangle.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@

public class Triangle {

//Result in Radiant
public static double sin(double d){
return Math.sin(d);
}
public static double tan(double d){
return Math.tan(d);
}
public static double cos(double d){
return Math.cos(d);
}
public static double cot(double d){
return Math.atan(d);
}
}