我正在尝试学习如何使用库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计算机和视觉工作室。我正在运行arch linux,我用g ++编译它。问题可能是两个编译器之间的区别吗?
我真的迷失了,任何帮助都会非常感激。
答案 0 :(得分:1)
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> > {};