summaryrefslogtreecommitdiff
path: root/test/path.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/path.c')
-rw-r--r--test/path.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/test/path.c b/test/path.c
index b62b43d..16a8ce2 100644
--- a/test/path.c
+++ b/test/path.c
@@ -77,11 +77,16 @@ int main(int argc, char **argv)
pen.stroke_type = NFSB_PLOT_OPTYPE_SOLID;
pen.fill_type = NFSB_PLOT_OPTYPE_NONE;
- nsfb_plot_path(nsfb, fill_shape(path, 100, 100), path, &pen);
+ nsfb_plot_path(nsfb, fill_shape(path, 100, 50), path, &pen);
pen.fill_type = NFSB_PLOT_OPTYPE_SOLID;
- nsfb_plot_path(nsfb, fill_shape(path, 100, 300), path, &pen);
+ nsfb_plot_path(nsfb, fill_shape(path, 100, 200), path, &pen);
+
+ pen.stroke_type = NFSB_PLOT_OPTYPE_NONE;
+
+ nsfb_plot_path(nsfb, fill_shape(path, 100, 350), path, &pen);
+
nsfb_update(nsfb, &box);