forked from Jus973/baseball-hit-trax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.java
31 lines (17 loc) · 827 Bytes
/
main.java
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
29
30
31
import java.util.ArrayList;
public class main {
public static void main (String args[]){
//run calculations off coord.txt
//create calc object
camera c = new camera (0, 16, 4, 0.7999999999999987, 6.200000000000002);
//create camera
//create baseball
//open parameters
ArrayList<graphable> baseballDots = new ArrayList<>(); //add values to graph here..
baseballDots.add(new graphable(5, 5, 5));
//add all calc.getEquations into baseballDots, so it should just be a bunch of 3d points
//dk if this is necessary to be completely honest
new runGraphGUI(c, baseballDots).setVisible(true);
//arrows are shifted for angle / camera movement
}
}