From e271f9adb8ff4754c4c8c8b359a08b20a6a57937 Mon Sep 17 00:00:00 2001 From: cnr-isti-vclab Date: Mon, 26 Apr 2010 15:11:52 +0000 Subject: [PATCH] added missing function HasEHAdjacency --- vcg/complex/trimesh/base.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vcg/complex/trimesh/base.h b/vcg/complex/trimesh/base.h index 0464dfd9..a8b5ceb7 100644 --- a/vcg/complex/trimesh/base.h +++ b/vcg/complex/trimesh/base.h @@ -559,6 +559,9 @@ bool HasEVAdjacency (const TriMesh < ContainerType0, ContainerType1, ContainerTy template < class ContainerType0, class ContainerType1, class ContainerType2 , class ContainerType3> bool HasEFAdjacency (const TriMesh < ContainerType0, ContainerType1, ContainerType2, ContainerType3> & /*m*/) {return TriMesh < ContainerType0 , ContainerType1, ContainerType2, ContainerType3>::EdgeType::HasEFAdjacency();} +template < class ContainerType0, class ContainerType1, class ContainerType2 , class ContainerType3> +bool HasEHAdjacency (const TriMesh < ContainerType0, ContainerType1, ContainerType2, ContainerType3> & /*m*/) {return TriMesh < ContainerType0 , ContainerType1, ContainerType2, ContainerType3>::EdgeType::HasEHAdjacency();} + template < class ContainerType0, class ContainerType1, class ContainerType2 , class ContainerType3> bool HasFHAdjacency (const TriMesh < ContainerType0, ContainerType1, ContainerType2, ContainerType3> & /*m*/) {return TriMesh < ContainerType0 , ContainerType1, ContainerType2, ContainerType3>::FaceType::HasFHAdjacency();}