Normand Briere
2019-07-27 1af7d3700724834e40ad8636bc9a56cdc3b19b15
Grafreed.java
....@@ -23,6 +23,8 @@
2323 static float epsvertex2 = 0.001f;
2424 static boolean linkUV = false; // not uniform at load time
2525
26
+ static boolean smoothmode = false;
27
+
2628 static Wav wav = new Wav("/Users/nbriere/0ut/wavs/monoformat"); // output");
2729 static boolean hassound = false;
2830 static boolean savesound = false;
....@@ -624,12 +626,12 @@
624626
625627 System.out.println("jarfile = " + jarfile);
626628
627
- String command = javaPath + " -Xmx1024m -Djava.library.path=" + jarpath;
629
+ String command = javaPath + " -Xmx2048m -Djava.library.path=" + jarpath;
628630
629631 // -Djava.library.path=/Users/nbriere/Projects/shared/lib
630632 if (jarfile.charAt(2) == ':')
631633 {
632
- command = "\"" + javaPath + "\" -Xmx1024m -Djava.library.path=" + jarpath;
634
+ command = "\"" + javaPath + "\" -Xmx2048m -Djava.library.path=" + jarpath;
633635 // On Windows systems, the path is /C:/
634636 jarfile = jarfile.substring(1, jarfile.length());
635637 System.out.println("jarfile = " + jarfile);
....@@ -874,7 +876,7 @@
874876 static int depth = 0;
875877 static java.util.Stack stack = new java.util.Stack();
876878 static boolean traceoff = false; // true;
877
- static float[] colorV = new float[5];
879
+ static float[] colorV = new float[4]; // 5];
878880
879881 static void traceon()
880882 {