IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 10795


Ignore:
Timestamp:
Dec 16, 2006, 11:58:44 PM (20 years ago)
Author:
eugene
Message:

added PlotVectorPair,Triplet

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/opihi/lib.data/PlotVectors.c

    r5850 r10795  
    3131}
    3232
     33int PlotVectorPair (int N, float *xValues, float *yValues, Graphdata *graphmode) {
     34
     35    PrepPlotting (N, graphmode);
     36    PlotVector (N, xValues);
     37    PlotVector (N, yValues);
     38
     39    return (TRUE);
     40}
     41
     42int PlotVectorTriplet (int N, float *xValues, float *yValues, float *zValues, Graphdata *graphmode) {
     43
     44    PrepPlotting (N, graphmode);
     45    PlotVector (N, xValues);
     46    PlotVector (N, yValues);
     47    PlotVector (N, zValues);
     48
     49    return (TRUE);
     50}
     51
    3352/* we don't use GetGraph in PlotVector because it flushes the connection */
Note: See TracChangeset for help on using the changeset viewer.