diff options
Diffstat (limited to 'src/bezier.c')
-rw-r--r-- | src/bezier.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/bezier.c b/src/bezier.c index e571a3c..95af16a 100644 --- a/src/bezier.c +++ b/src/bezier.c @@ -31,6 +31,13 @@ #include "bezier.h" +const struct bezier_control_point bezier_defaults[4] = { + { 0.0, 0.0 }, + { 0.0, 0.0 }, + { 1.0, 1.0 }, + { 1.0, 1.0 }, +}; + struct point { int x, y; }; |