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.
孙建超 fd81951b24 将一些文件转为 lfs 文件 1 month ago
..
3rd/catch 搬运代码 1 month ago
data 搬运代码 1 month ago
doc 搬运代码 1 month ago
examples 搬运代码 1 month ago
lib 手动 develop 1 month ago
output 将一些文件转为 lfs 文件 1 month ago
tests 搬运代码 1 month ago
.gitignore 搬运v4.5 1 month ago
CMakeLists.txt 搬运代码 1 month ago
GBKStripper.h 手动 develop 1 month ago
MyTimer.h 搬运代码 1 month ago
README.MD 搬运代码 1 month ago
SurfaceGrid.sln 搬运代码 1 month ago
SurfaceGrid.vcxproj 手动 develop 1 month ago
SurfaceGrid.vcxproj.filters 手动 develop 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