Ignore:
Timestamp:
11/20/15 12:05:30 (9 years ago)
Author:
dlcheng
Message:

CHG:Standardizing js plot api. Attempting fix to preven default zoom behavior on test101 canvases.

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) {
     1function plot_unit(md,data,options,canvas,gl) {
    22        //PLOT_UNIT - unit plot, display data
    33        //
    44        //   Usage:
    5         //      plot_unit(x,y,z,elements,data,is2d,isplanet,datatype,options);
     5        //      plot_unit(md,data,options,canvas,gl);
    66        //
    77        //   See also: PLOTMODEL, PLOT_MANAGER
     
    1818        var datamin,datamax;
    1919        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];
    2032        //}}}
    2133
    2234        //Initialize the buffer structure:
    2335        node = Node(gl,options);
     36
    2437
    2538        //Compute coordinates and data range:
Note: See TracChangeset for help on using the changeset viewer.