IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 17, 2007, 9:58:42 AM (19 years ago)
Author:
eugene
Message:

rationalized kapa block/non-block, fixed comm problems

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/kapa-mods-2007-05/Ohana/src/opihi/lib.data/PlotVectors.c

    r13402 r13409  
    1010}
    1111
    12 int PlotVector (int Npts, float *values) {
     12int PlotVector (int Npts, float *values, char *type) {
    1313
    14   KapaPlotVector (kapa, Npts, values);
     14  KapaPlotVector (kapa, Npts, values, type);
    1515  return (TRUE);
    1616}
     
    1919
    2020  PrepPlotting (N, graphmode);
    21   PlotVector (N, xValues);
    22   PlotVector (N, yValues);
     21  PlotVector (N, xValues, "x");
     22  PlotVector (N, yValues, "y");
    2323
    2424  return (TRUE);
     
    2828
    2929  PrepPlotting (N, graphmode);
    30   PlotVector (N, xValues);
    31   PlotVector (N, yValues);
    32   PlotVector (N, zValues);
     30  PlotVector (N, xValues, "x");
     31  PlotVector (N, yValues, "y");
     32  PlotVector (N, zValues, "z");
    3333
    3434  return (TRUE);
Note: See TracChangeset for help on using the changeset viewer.