Date:2012-06-12 19:24:50 (11 years 9 months ago)
Author:Werner Almesberger
Commit:f48754e0673ecd0f1f8ab679eac77aa63987595c
Message:cameo/path.c: make path_is_closed global

Files: cameo/path.c (1 diff)
cameo/path.h (1 diff)

Change Details

cameo/path.c
9898}
9999
100100
101static int path_is_closed(const struct path *path)
101int path_is_closed(const struct path *path)
102102{
103103    if (path->first == path->last)
104104        return 1;
cameo/path.h
3434void path_add(struct path *path, double x, double y, double z);
3535struct path *path_reverse(const struct path *path);
3636struct path *path_clone(const struct path *path);
37int path_is_closed(const struct path *path);
3738int path_tool_is_left(const struct path *path);
3839struct path *path_offset(const struct path *path, int left, int notch);
3940const struct path *path_find_leftmost(const struct path *path);

Archive Download the corresponding diff file

Branches:
master



interactive