1

我正在尝试学习如何使用库 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 ‘&lt;’ token
trimesh_definition.cpp:13:40: error: expected ‘{’ before ‘&lt;’ token
trimesh_definition.cpp:13:40: error: expected unqualified-id before ‘&lt;’ token
trimesh_definition.cpp:14:36: error: expected template-name before ‘&lt;’ token
trimesh_definition.cpp:14:36: error: expected ‘{’ before ‘&lt;’ token
trimesh_definition.cpp:14:36: error: expected unqualified-id before ‘&lt;’ 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 计算机和视觉工作室的。我正在运行 arch linux,我正在用 g++ 编译它。问题可能是两个编译器之间的区别吗?

我真的迷路了,任何帮助将不胜感激。

4

1 回答 1

1

VertexSimp2(以及 1 和 3 也是)是旧版本 vcg 中使用的类。搜索您的 Lib,您将找不到class VertexSimp2.

这正是编译器所说的,vcg::VertexSimp2应该是一种类型,但事实并非如此。

教程为您提供了实际的解决方案:

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> > {};
于 2012-03-16T18:46:58.753 回答