Index: /trunk/Ohana/src/opihi/lib.data/PlotVectors.c
===================================================================
--- /trunk/Ohana/src/opihi/lib.data/PlotVectors.c	(revision 10794)
+++ /trunk/Ohana/src/opihi/lib.data/PlotVectors.c	(revision 10795)
@@ -31,3 +31,22 @@
 }
 
+int PlotVectorPair (int N, float *xValues, float *yValues, Graphdata *graphmode) {
+
+    PrepPlotting (N, graphmode);
+    PlotVector (N, xValues);
+    PlotVector (N, yValues);
+
+    return (TRUE);
+}
+
+int PlotVectorTriplet (int N, float *xValues, float *yValues, float *zValues, Graphdata *graphmode) {
+
+    PrepPlotting (N, graphmode);
+    PlotVector (N, xValues);
+    PlotVector (N, yValues);
+    PlotVector (N, zValues);
+
+    return (TRUE);
+}
+
 /* we don't use GetGraph in PlotVector because it flushes the connection */
