-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathMath.java
More file actions
29 lines (23 loc) · 699 Bytes
/
Math.java
File metadata and controls
29 lines (23 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/**
* Java Grinder
* Author: Michael Kohn
* Email: mike@mikekohn.net
* Web: https://www.mikekohn.net/
* License: GPL
*
* Copyright 2014-2022 by Michael Kohn
*
*/
package net.mikekohn.java_grinder;
abstract public class Math
{
protected Math() { }
public static int abs(int value) { return 0; }
public static int xor(int value) { return 0; }
public static int min(int n0, int n1) { return 0; }
public static int max(int n0, int n1) { return 0; }
/** Calculated sine based on a 512 degree circle. */
public static float sin512(int value) { return 0; }
/** Calculated cosine based on a 512 degree circle */
public static float cos512(int value) { return 0; }
}