Re: [Openflipper] Openflipper Digest, Vol 27, Issue 6

It seems you are trying to pass an OpenMesh::ArrayItem::Face object as the second parameter to operator() where in fact you have to pass a OpenMesh::ArrayKernel::FaceHandle object.
Send Openflipper mailing list submissions to openflipper@lists.rwth-aachen.de
To subscribe or unsubscribe via the World Wide Web, visit http://mailman.rwth-aachen.de/mailman/listinfo/openflipper or, via email, send a message with subject or body 'help' to openflipper-request@lists.rwth-aachen.de
You can reach the person managing the list at openflipper-owner@lists.rwth-aachen.de
When replying, please edit your Subject line so it is more specific than "Re: Contents of Openflipper digest..."
Today's Topics:
1. no matching functio error (Bo Wu) 2. Re: no matching functio error (Jan Möbius)
----------------------------------------------------------------------
Message: 1 Date: Wed, 16 May 2012 21:04:48 +0800 From: Bo Wu <wubogfkd@gmail.com> To: openflipper@lists.rwth-aachen.de Subject: [Openflipper] no matching functio error Message-ID: <CAE3hCD33J1w3gqPTMVrePt_J5eKLA1tqtU6xbMuWdQkJz_sZiw@mail.gmail.com> Content-Type: text/plain; charset="windows-1252"
Dear all,
I am newbie about OpenFlipper. When I try to compile it, I come with error as following:
*/OpenFlipper-1.2/Plugin-PropertyVis/PropertyVisPlugin.cc:1906:13: error: no matching function for call to ?OpenMesh::PolyMesh_ArrayKernelT<PolyTraits>::property(const OpenMesh::FPropHandleT<std::map<unsigned int, double> >&, const OpenMesh::ArrayItems::Face&)?*
the clip around 1906 in the *PropertyVisPlugin.cc* is as following:
*1898 template<typename MeshT, typename PropHandleT> 1899 class CopyProperty { 1900 public: 1901 CopyProperty(const PropHandleT &p1, const PropHandleT &p2, MeshT &m esh) : 1902 p1(p1), p2(p2), mesh(mesh) {} 1903 1904 template<typename PrimitiveHandleT> 1905 inline void operator() (const PrimitiveHandleT &pr) { 1906 mesh.property(p1, pr) = mesh.property(p2, pr); 1907 }
How can I fix the error? thx *
participants (1)
-
Bengt Rosenberger