Setting up Bezier 0.2.1 in Visual Studio 2022 using CMake
- Install the Bezier library using this guide: How to install the single header only Bezier library
- Install VS 2022 and CMake using this guide: Installation of Visual Studio 2022 Community with CMake support
- Run Visual Studio
- Click on the "Create a new project" button:
- Click on the "CMake Project" and click on the "Next" button:
- Type a project name, set a project location, check the "Place solution and project in the same directory" checkbox, and click on the "Create" button:
- Wait a few seconds for configuration
- Run the project by click on the empty green triangle (or Ctrl+F5):
- The program prints "Hello CMake" to the console:
- Double click on the "CMakeLists.txt" file:
- Copy the following code to the "CMakeLists.txt" but change the Bezier location on yours:
target_include_directories(hello-bezier PRIVATE E:/libs/bezier-0.2.1/include)
Double click on the "hello-bezier.cpp" file:
Copy the following content to the "hello-bezier.cpp" file:
#include <bezier/bezier.h>
#include <iostream>
int main()
{
bezier::Bezier<3> cubicBezier(
{ { 120, 160 }, { 35, 200 }, { 220, 260 }, { 220, 40 } });
for (int i = 0; i < 10; ++i)
{
bezier::Point start = cubicBezier.valueAt(i / 100.f);
bezier::Point end = cubicBezier.valueAt((i + 1) / 100.f);
std::cout << "Start: " << start.x << ", " << start.y << std::endl;
std::cout << "End: " << end.x << ", " << end.y << std::endl;
}
return 0;
}
Press Ctrl+F5 to run the application
You see the result in the console. These are the start and the end of the segments for the curve:
Start: 120, 160
End: 117.531, 161.206
Start: 117.531, 161.206
End: 115.22, 162.422
Start: 115.22, 162.422
End: 113.067, 163.646
Start: 113.067, 163.646
End: 111.067, 164.877
Start: 111.067, 164.877
End: 109.218, 166.113
Start: 109.218, 166.113
End: 107.518, 167.351
Start: 107.518, 167.351
End: 105.963, 168.591
Start: 105.963, 168.591
End: 104.551, 169.83
Start: 104.551, 169.83
End: 103.279, 171.067
Start: 103.279, 171.067
End: 102.145, 172.3