gpt4 book ai didi

compiler-errors - CGAL surface_mesh封面示例

转载 作者:行者123 更新时间:2023-12-02 10:51:15 25 4
gpt4 key购买 nike

在CGAL网页上,您会看到以下简短示例:

 CGAL::AABB_tree tree(faces(surface_mesh));

在所有surface_mesh和AABBTree文档示例中,均未使用此行,因此,我想知道如何配置AABB特性以使该示例成为可能。我自己的方法无法编译:
    #include <CGAL/AABB_face_graph_triangle_primitive.h>
#include <CGAL/AABB_traits.h>
#include <CGAL/AABB_tree.h>
#include <CGAL/AABB_triangle_primitive.h>
#include <CGAL/Simple_cartesian.h>
#include <CGAL/Surface_mesh.h>
#include <fstream>
#include <iostream>
#include <list>

typedef CGAL::Simple_cartesian<double> Kernel;
typedef Kernel::FT FT;
typedef Kernel::Ray_3 Ray;
typedef Kernel::Line_3 Line;
typedef Kernel::Point_3 Point;

typedef CGAL::Surface_mesh<Point> SMesh;
typedef CGAL::AABB_face_graph_triangle_primitive<SMesh> Primitive;
typedef CGAL::AABB_traits<Kernel, Primitive> AABB_Mesh_Traits;
typedef CGAL::AABB_tree<AABB_Mesh_Traits> AABBTree;

int main( const int argc, const char* argv[] )
{
const char* filename = ( argc > 1 ) ? argv[1] : "model.obj";
std::ifstream input( filename );
SMesh mesh;
input >> mesh;
AABBTree tree( faces( mesh ) );

Point a( 1.0, 0.0, 0.0 );
Point b( 0.0, 1.0, 0.0 );
Ray ray_query( a, b );
std::cout << tree.number_of_intersected_primitives( ray_query )
<< " intersections(s) with ray query" << std::endl;

return EXIT_SUCCESS;
}

编译器错误是:
 no matching constructor for initialization of 'AABBTree' 
(aka 'AABB_tree<AABB_traits<Simple_cartesian<double>,
AABB_face_graph_triangle_primitive<
Surface_mesh<Point_3<CGAL::Simple_cartesian<double> > > > > >')

最佳答案

应该是tree(faces(mesh).first, faces(mesh).second, mesh)

请注意,在User Manual中,您找到了一个使用
完整的语法。此示例随图书馆一起提供
目录examples/AABB_tree

关于compiler-errors - CGAL surface_mesh封面示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48424634/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com