cgal安装实例

目录

cgal安装示例

demo.cpp 简单的可以

报错Delaunay_triangulation_3:

cmakelist.txt 编译ok:

cgal 下载CGAL-6.0.1-library.tar,cmakelist.txt添加头文件路径即可。


cgal安装示例

CMakeLists.txt

cmake_minimum_required(VERSION 3.10)
project(MyCGALProject)

# 查找CGAL库
find_package(CGAL REQUIRED)

# 包含CGAL头文件目录
include_directories(${CGAL_INCLUDE_DIRS})

# 添加可执行文件及其链接库
add_executable(my_executable main.cpp)
target_link_libraries(my_executable ${CGAL_LIBRARIES})

demo.cpp 简单的可以

#include <CGAL/Simple_cartesian.h>
#include <CGAL/convex_hull_2.h>
#include <vector>
#include <iterator>
#include <iostream>

typedef CGAL::Simple_cartesian<double> K;
typedef K::Point_2 Point_2;

int main()
{
    std::vector<Point_2> points = { Point_2(0, 0), Point_2(10, 0), Point_2(10, 10), Point_2(0, 10), Point_2(5, 5) };
    std::vector<Point_2> result;

    CGAL::convex_hull_2(points.begin(), points.end(), std::back_inserter(result));

    std::cout << "The convex hull contains " << result.size() << " points:" << std::endl;
    for (const auto& point : result) {
        std::cout << "(" << point.x() << ", " << point.y() << ")" << std::endl;
    }

    return 0;
}

报错Delaunay_triangulation_3:

#include <CGAL/Simple_cartesian.h>
#include <CGAL/convex_hull_2.h>
#include <vector>
#include <iterator>
#include <iostream>

#include <CGAL/Delaunay_triangulation_3.h>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Triangulation_3.h>
#include <CGAL/Triangulation_vertex_base_with_info_3.h>
#include <CGAL/compute_average_spacing.h>

typedef CGAL::Simple_cartesian<double> K;
typedef K::Point_2 Point_2;

typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
typedef CGAL::Triangulation_vertex_base_with_info_3<unsigned int, K> Vb;
typedef CGAL::Triangulation_data_structure_3<Vb> Tds;
typedef CGAL::Delaunay_triangulation_3<K, Tds> Triangulation;

int main()
{
    std::vector<Point_2> points = { Point_2(0, 0), Point_2(10, 0), Point_2(10, 10), Point_2(0, 10), Point_2(5, 5) };
    std::vector<Point_2> result;

    CGAL::convex_hull_2(points.begin(), points.end(), std::back_inserter(result));

    std::cout << "The convex hull contains " << result.size() << " points:" << std::endl;
    for (const auto& point : result) {
        std::cout << "(" << point.x() << ", " << point.y() << ")" << std::endl;
    }

    return 0;
}

cmakelist.txt 编译ok:

cgal 下载CGAL-6.0.1-library.tar,cmakelist.txt添加头文件路径即可。

Release CGAL 6.0.1 · CGAL/cgal · GitHub

cmake_minimum_required(VERSION 3.10)
project(MyCGALProject)

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
# 查找CGAL库
find_package(CGAL REQUIRED)

# 包含CGAL头文件目录
include_directories("/shared_disk/users/lbg/project/3dgs/gs/cgal_lib/CGAL-6.0.1/include")

# 添加可执行文件及其链接库
add_executable(my_executable main.cpp)
target_link_libraries(my_executable ${CGAL_LIBRARIES})

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

AI算法网奇

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值