From: Carl Worth Date: Tue, 27 Jan 2009 08:55:42 +0000 (-0800) Subject: Change test data to go all the way to 100 X-Git-Url: https://git.cworth.org/git?p=acre;a=commitdiff_plain;h=13e92bb945fc8cb1e25079402ae9a8aa50044489 Change test data to go all the way to 100 This makes the value 100 appear along the X axis which just looks nicer. --- diff --git a/acre-test.c b/acre-test.c index bf1a516..31192b9 100644 --- a/acre-test.c +++ b/acre-test.c @@ -23,7 +23,7 @@ main (void) acre_data_set_name (data, "Acre test data"); - for (i = 0; i < 100; i++) + for (i = 0; i <= 100; i++) acre_data_add_point_2d (data, i, 100 - (i/4.0)*(i/4.0)); acre_add_data (acre, data);