You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
1 month ago | |
|---|---|---|
| .. | ||
| 3rd/catch | 1 month ago | |
| data | 1 month ago | |
| doc | 1 month ago | |
| examples | 1 month ago | |
| lib | 1 month ago | |
| output | 1 month ago | |
| tests | 1 month ago | |
| .gitignore | 1 month ago | |
| CMakeLists.txt | 1 month ago | |
| MyTimer.h | 1 month ago | |
| README.MD | 1 month ago | |
| SurfaceGrid.sln | 1 month ago | |
| SurfaceGrid.vcxproj | 1 month ago | |
| SurfaceGrid.vcxproj.filters | 1 month ago | |
| SurfaceGridProxy.cs | 1 month ago | |
| 最小曲率法网格化插值程序参数说明.md | 1 month ago | |
| 最小曲率法网格插值程序参数说明.pdf | 1 month ago | |
README.MD
散点数据 最小曲率法曲面网格化API
开发语言要求 C++17
编译工具 gcc clang visual studio 2019 cmake
文件架构 +--3rd/catch 单元测试第三方依赖代码,主程序不需要 |--build 编译输出文件夹 |--doc 参考文档 |--examples 网格化API使用范例程序 |--lib 网格化API动态库 |--output 编译输出路径,包括 api 库、测试程序、范例程序 \--test 网格化API测试代码
编译方法
-
linux
cd build cmake .. make -j 10 make install -
windows
cd build cmake .. msbuild.exe *.sln -n 10 msbuild.exe install.proj