No description
  • C 93.4%
  • Meson 6.6%
Find a file
2024-12-15 15:53:39 +01:00
src Initial commit 2024-12-15 15:53:39 +01:00
.gitignore Initial commit 2024-12-15 15:53:39 +01:00
meson.build Initial commit 2024-12-15 15:53:39 +01:00
README.md Initial commit 2024-12-15 15:53:39 +01:00

Bezier curve drawing utility

Simple tool that allows drawing a cubic bezier curve by placing its control points.

Building

This utility depends solely on SDL3. As of now (2024-12-14) there is no official release of SDL3, so you might need to build it yourself.

To build the program using meson, run the following commands.

meson setup build      # Generate the build directory
meson compile -C build # Compile the program

The resulting executagble will be stored in the build/ directory.