[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Point inside BB doesn't show up



HI all,

Attached there is an xp file and the generated pdf.
I have a bounding box (250,3) but the point (249,1) is not showing up.
Why is that?

Cheers,
--
Paulo Jorge Matos - pocm at sat inesc-id pt
Web: http://sat.inesc-id.pt/~pocm
Computer and Software Engineering
INESC-ID - SAT Group

Attachment: lra-pproc.pdf
Description: Adobe PDF document

#include <epix.h>

using namespace ePiX;

int main() {
unitlength("1cm");
picture(20.0, 4.0);
bounding_box(P(0,0), P(250,3));
begin(); plain(); degrees(); 
grid(10,3);
h_axis(10);
v_axis(3);
h_axis_labels(10, P(0, -4), b);
v_axis_labels(P(0,1), P(0, 2), 1, P(-2, 0), l);
label_angle(90); label(P(-6, 1.5), "Y-AXIS");
label_angle(0);  label(P(x_max/2, -0.7), "X-AXIS");
red();
marker(P(249, 1.0), DIAMOND);
end();
}