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.
37 lines
678 B
Plaintext
37 lines
678 B
Plaintext
|
1 month ago
|
散点数据 最小曲率法曲面网格化API
|
||
|
|
|
||
|
|
开发语言要求
|
||
|
|
C++17
|
||
|
|
|
||
|
|
编译工具
|
||
|
|
gcc
|
||
|
|
clang
|
||
|
|
visual studio 2019
|
||
|
|
cmake
|
||
|
|
|
||
|
|
文件架构
|
||
|
|
+--3rd/catch 单元测试第三方依赖代码,主程序不需要
|
||
|
|
|--build 编译输出文件夹
|
||
|
|
|--doc 参考文档
|
||
|
|
|--examples 网格化API使用范例程序
|
||
|
|
|--lib 网格化API动态库
|
||
|
|
|--output 编译输出路径,包括 api 库、测试程序、范例程序
|
||
|
|
\\--test 网格化API测试代码
|
||
|
|
|
||
|
|
编译方法
|
||
|
|
|
||
|
|
* linux
|
||
|
|
```bash
|
||
|
|
cd build
|
||
|
|
cmake ..
|
||
|
|
make -j 10
|
||
|
|
make install
|
||
|
|
```
|
||
|
|
|
||
|
|
* windows
|
||
|
|
```cmd
|
||
|
|
cd build
|
||
|
|
cmake ..
|
||
|
|
msbuild.exe *.sln -n 10
|
||
|
|
msbuild.exe install.proj
|
||
|
|
```
|