A tool for finding critical points and further figuring out loops and singular points in surface intersection.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
260 B

2 years ago
cmake_minimum_required(VERSION 3.21)
project(LoopDetector)
set(CMAKE_CXX_STANDARD 14)
add_executable(LoopDetector main.cpp src/loop_detector.cpp include/loop_detector.h)
include_directories(E:/CLib/tinynurbs/include E:/CLib/glm)
include_directories(include)