|
From: <HBB...@t-...> - 2007-03-14 21:13:27
|
Daniel J Sebald wrote: > * Many times people want to plot a line representing some boundary or > plane which basically means they'd like to have the line extend from > one boundary of the plot to another. set arrow from graph 0, first <y1> to graph 1, first <y2> nohead does that quite nicely. > now, I believe the user has to resort to computing the points of > intersection of the line and the four possible boundaries. Not at all. Express the line as a function and plot it. Done. > So, if the term->clip_region() > function is implemented, it might be nice to have gnuplot do this > work for the user. Not unless you also want to add a term->draw_infinite_line() entry to it while at it. term->clip_region is for clipping primitives. Infinite lines aren't terminal primitives, and as long as they aren't, it's none of term->clip_region()'s job to clip them. |