gpt4 book ai didi

c++ - 需要帮助使用 g++ 编译 vcglib 代码

转载 作者:太空宇宙 更新时间:2023-11-04 12:11:13 24 4
gpt4 key购买 nike

我正在尝试学习如何使用库 vcglib (http://vcg.sourceforge.net/index.php/Main_Page),但我很难编译任何东西。现在我正在尝试编译 trimesh_definition.cpp,它只是 vcglib 附带的一个基本示例,应该展示如何启动和运行所有内容。

这是我要编译的代码:

1  #include <vector>
2
3 #include <vcg/simplex/vertex/base.h>
4 #include <vcg/simplex/vertex/component.h>
5 #include <vcg/simplex/face/base.h>
6 #include <vcg/simplex/face/component.h>
7
8 #include <vcg/complex/complex.h>
9
10 class MyEdge;
11 class MyFace;
12
13 class MyVertex: public vcg::VertexSimp2<MyVertex,MyEdge,MyFace, vcg::vert::Coord3d, vcg::vert::Normal3f>{};
14 class MyFace: public vcg::FaceSimp2<MyVertex,MyEdge,MyFace, vcg::face::VertexRef>{};
15
16 class MyMesh: public vcg::tri::TriMesh< std::vector<MyVertex>, std::vector<MyFace> > {};
17
18 int main()
19 {
20 MyMesh m;
21 return 0;
22 }

我正在使用以下命令编译代码:

g++ -I ../../../vcglib trimesh_definition.cpp -o trimesh_def

我收到以下错误:

trimesh_definition.cpp:13:40: error: expected template-name before ‘<’ token
trimesh_definition.cpp:13:40: error: expected ‘{’ before ‘<’ token
trimesh_definition.cpp:13:40: error: expected unqualified-id before ‘<’ token
trimesh_definition.cpp:14:36: error: expected template-name before ‘<’ token
trimesh_definition.cpp:14:36: error: expected ‘{’ before ‘<’ token
trimesh_definition.cpp:14:36: error: expected unqualified-id before ‘<’ token
In file included from trimesh_definition.cpp:8:0:
/home/martin/Programming/Graphics/libraries/vcglib/vcg/complex/complex.h: In instantiation of ‘vcg::tri::TriMesh<std::vector<MyVertex>, std::vector<MyFace> >’:
trimesh_definition.cpp:16:86: instantiated from here
(... followed by many more screenfulls of template info)

我对模板了解不多,所以我不知道问题出在哪里,也不知道我应该如何解决它。这是直接从我上面链接的 vcglib 网站下载的代码,我没有修改任何内容,所以我很惊讶它没有编译。

看起来他们给出的大多数示例都是针对 Windows 计算机和 Visual Studio 的。我正在运行 arch linux,我正在用 g++ 编译它。问题可能是两个编译器之间的差异吗?

我真的迷路了,非常感谢任何帮助。

最佳答案

VertexSimp2(还有 1 和 3)是旧版本 vcg 中使用的类。搜索您的 Lib,您找不到 class VertexSimp2 的定义。

这正是编译器所说的,vcg::VertexSimp2 应该是一种类型,但它不是。

Tutorial为您提供实际的解决方案:

class MyUsedTypes: public vcg::UsedTypes< vcg::Use<MyVertex>::AsVertexType>,
vcg::Use<MyFace>::AsFaceType>


class MyVertex : public vcg::Vertex<MyUsedTypes, vcg::vertex::Coord3d, vcg::vertex::Normal3f> {};
class MyFace : public vcg::Face<MyUsedTypes, vcg::face::VertexRef> {};
class MyMesh : public vcg::tri::TriMesh< std::vector<MyVertex>, std::vector<MyFace> > {};

关于c++ - 需要帮助使用 g++ 编译 vcglib 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9741828/

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