Hello all, I would like suggest a patch to plstripc.c to address a problem I am having with strip charts when the accumulate mode is off. As-is, the difference between stripc->xmax and stripc->xmin can vary from stripc->xlen and can cause points to not be plotted until their difference again exceeds stripc->xlen.
diff plstripc.c plstripc.c.new 313c313,317 < stripc->xmin = stripc->x[p][0]; --- > if( stripc->acc == 0 ) > stripc->xmin = stripc->xmin + stripc->xlen * stripc->xjump; > else > stripc->xmin = stripc->x[p][0]; > Best Regards, Andrew ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ Plplot-devel mailing list Plplot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/plplot-devel