Build a 3d surface plot using xyz coordinates with jzy3d
问题 I've been searching for a way to send a list of coord(x,y,z) to jzy3d. But without success. The only way I found is to use a "builder" with a list of "coord3d" and a "tesselator", but it actually doesn't work. I don't realy get the meaning of the Tesselator in fact ? Here is the code I tried : public Chart getChart(){ List<Coord3d> coordinates = new ArrayList<Coord3d>(); for(int i=0; i<200; i++) coordinates.add( new Coord3d(5, 10, 15) ); Tesselator tesselator = new Tesselator() { @Override