A very simple application that highlights how De-Casteljau's algorithm works by showing the intermediate lines used by the algorithm to calculate the resulting bezier curve.
In order to compile this demo, you need to have:
cmake_minimum_required
property in your CMake file accordingly).$ mkdir build
$ cd build
$ cmake ../
(you may also have to add -DCMAKE_PREFIX_PATH or -DBUILD_WITH_QT5 with appropriate values depending on your environment$ make
The resulting executable can then be launched by issuing ./src/de\_casteljau\_demo
inside the build directory. If CMake fails to find Qt, you may use the CMAKE_PREFIX_PATH
environment variable to help cmake locate the correct version of Qt. Running CMake would then may look like this for Qt5 $ cmake -DCMAKE_PREFIX_PATH=~/Qt/5.15.2/gcc_64 -DBUILD_WITH_QT5=ON ..
or the following for Qt6: $ cmake -DCMAKE_PREFIX_PATH=~/Qt/6.5.2 ..
(assuming your Qt versions are installed under ~/Qt
).
The application is released under the terms of the GPLv3 or any later edition.