Fix each test and added READMEs
This commit is contained in:
9
application/visualizer/Test3/README.md
Normal file
9
application/visualizer/Test3/README.md
Normal file
@@ -0,0 +1,9 @@
|
||||
# Test 1
|
||||
This test requires a directory called `chunks` in the current working directory,
|
||||
filled with mAABB files that follow the naming convention: `<string>,<int>,<int>`.
|
||||
|
||||
The mAABB file format contains an arbitrary number of AABBs, with one line per each:
|
||||
`<min-x> <min-y> <min-z> <max-x> <max-y> <max-z>`
|
||||
|
||||
This program should be ran via the command line with `java -jar`. It will tesselate all
|
||||
the files it can find as fast as possible, then output the time results.
|
||||
@@ -237,7 +237,7 @@ public class MeshingTest3 {
|
||||
|
||||
AABB( double xmin, double ymin, double zmin, double xmax, double ymax, double zmax ) {
|
||||
this.xmin = xmin;
|
||||
this.ymax = ymin;
|
||||
this.ymin = ymin;
|
||||
this.zmin = zmin;
|
||||
|
||||
this.xmax = xmax;
|
||||
|
||||
Reference in New Issue
Block a user