diff yetilab/plot/plot.yeti @ 112:f73923903ba4

Add Makefile, fix compile errors
author Chris Cannam
date Wed, 17 Apr 2013 20:23:12 +0100
parents 90dca6156662
children 30c790d2789e
line wrap: on
line diff
--- a/yetilab/plot/plot.yeti	Sun Apr 14 21:29:21 2013 +0100
+++ b/yetilab/plot/plot.yeti	Wed Apr 17 20:23:12 2013 +0100
@@ -38,11 +38,13 @@
     xrange = new Range(1, size.columns - 1);
     yrange = new Range(1, size.rows - 1);
     grid = new OrthonormalGrid(xrange, size.columns, yrange, size.rows);
+    println "Matrix size: \(size)";
     surface = Builder#buildOrthonormalBig(grid, mapper); //??? big?
     surface#setFaceDisplayed(false);
     surface#setWireframeDisplayed(true);
     surface#setWireframeColor(Color#BLACK);
-    chart = new Chart(Quality#Fastest, "swing");
+//    chart = new Chart(Quality#Fastest, "swing");
+    chart = new Chart(Quality#Nicest);
     chart#getScene()#getGraph()#add(surface);
     ChartLauncher#openChart(chart));