data/ -> res/

it bothers me having this folder just for my meshes.  and anyway, "data" is an extremely nondescriptive name.
This commit is contained in:
Justin Kunimune 2023-10-01 21:10:11 -04:00
parent 2dd268ab1c
commit fd5bfa48c7
12 changed files with 2 additions and 2 deletions

View File

Can't render this file because it is too large.

View File

Can't render this file because it is too large.

View File

Can't render this file because it is too large.

View File

Can't render this file because it is too large.

View File

Can't render this file because it is too large.

View File

Can't render this file because it is too large.

View File

Can't render this file because it is too large.

View File

@ -100,7 +100,7 @@ public class Danseiji {
BufferedReader in = null;
try {
in = new BufferedReader(new FileReader(String.format("data/%s", filename))); // parsing the input mesh is pretty simple
in = new BufferedReader(new FileReader(String.format("res/%s", filename))); // parsing the input mesh is pretty simple
String[] row = in.readLine().split(","); // get the header
double[][] vertices = new double[Integer.parseInt(row[0])][2];
cells = new double[Integer.parseInt(row[1])][Integer.parseInt(row[2])][][];

View File

@ -333,7 +333,7 @@ public class Elastik {
BufferedReader in = null;
try {
in = new BufferedReader(new FileReader(String.format("data/%s", filename))); // parsing the input mesh is pretty simple
in = new BufferedReader(new FileReader(String.format("res/%s", filename))); // parsing the input mesh is pretty simple
// load the basic projection information
String line = in.readLine(); // read the header