Changeset 19771 for issm/trunk-jpl/src/m/plot/plot_unit.js
- Timestamp:
- 11/20/15 12:05:30 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/plot/plot_unit.js
r19763 r19771 1 function plot_unit( x,y,z,elements,data,is2d,isplanet,datatype,options,canvas,gl) {1 function plot_unit(md,data,options,canvas,gl) { 2 2 //PLOT_UNIT - unit plot, display data 3 3 // 4 4 // Usage: 5 // plot_unit( x,y,z,elements,data,is2d,isplanet,datatype,options);5 // plot_unit(md,data,options,canvas,gl); 6 6 // 7 7 // See also: PLOTMODEL, PLOT_MANAGER … … 18 18 var datamin,datamax; 19 19 var scale; 20 //Process data and model 21 var meshresults = processmesh(md,data,options); 22 var x = meshresults[0]; 23 var y = meshresults[1]; 24 var z = meshresults[2]; 25 var elements = meshresults[3]; 26 var is2d = meshresults[4]; 27 var isplanet = meshresults[5]; 28 29 var dataresults = processdata(md,data,options); 30 var data2 = dataresults[0]; 31 var datatype = dataresults[1]; 20 32 //}}} 21 33 22 34 //Initialize the buffer structure: 23 35 node = Node(gl,options); 36 24 37 25 38 //Compute coordinates and data range:
Note:
See TracChangeset
for help on using the changeset viewer.