mirror of
https://github.com/csharpee/Map-Projections.git
synced 2025-12-09 00:00:11 -05:00
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:
parent
2dd268ab1c
commit
fd5bfa48c7
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
@ -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])][][];
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user