Subject: CGAL users discussion list
List archive
- From: "Sebastien Loriot (GeometryFactory)" <>
- To:
- Subject: Re: [cgal-discuss] Triangulated Surface Mesh Skeletonization compile errors
- Date: Mon, 22 Jan 2018 08:37:46 +0100
- Authentication-results: mail3-smtp-sop.national.inria.fr; spf=None ; spf=Pass ; spf=None
- Ironport-phdr: 9a23:7am7/R1tlk4kxFV4smDT+DRfVm0co7zxezQtwd8ZseMWLfad9pjvdHbS+e9qxAeQG9mDsrQc06L/iOPJYSQ4+5GPsXQPItRndiQuroEopTEmG9OPEkbhLfTnPGQQFcVGU0J5rTngaRAGUMnxaEfPrXKs8DUcBgvwNRZvJuTyB4Xek9m72/q99pHPfglEniaxba9vJxiqsAvdsdUbj5F/Iagr0BvJpXVIe+VSxWx2IF+Yggjx6MSt8pN96ipco/0u+dJOXqX8ZKQ4UKdXDC86PGAv5c3krgfMQA2S7XYBSGoWkx5IAw/Y7BHmW5r6ryX3uvZh1CScIMb7S60/Vza/4KdxUBLmlTkJNzA5/m/UhMJ/gq1UrxC9qBJw2IPUfIOYOeBicq/Bc94XR2xMVdtRWSxbBYO8apMCA+QcM+lGtIbyvUAOrQe/BQayAuPk1zlGhnjs3a071OQhDRzN0AghEd0Qt3TUqcv6NLsIUeG1zKfH1ynMb+9R2Tfn6InEdx4tquyLULJrdcrRzlMvFwLCjlWMs4DlOjeV2/8Cs2ie9eVgVOavh3Q7pAF2pzii38EhgZTHiIISz1DL7yR5wIAtKN2+UkF0esWrEJ9OuC2AK4R2RcYiT3l0tyY10LIGvYS3fC8QyJQo3xLfcOCHfJKU7RLgU+aRPyl3hGhreLK7gBaz/1KsxfH7Vsmx1ltBsylLksHUu3wTyxDe7tKLR/h980u7xDqDyQPe5vtZLU03i6bXM5wsz70qmpYNvknOHzX6lFjygaKYbEkp+Oil5uL6abv8vJCcLZV7igTmP6QuhMO/BeM4PxALX2eB+OS80KTv/EPjQLlWl/E2nLTVvZPEKcgBqa65BAhV0okn6xmhFTupzNMYnXwfIFJEfhKIkZTpNknQLPzkCfqzmVehnTdxy/zbILHsAY/BImXAnbv/Zbp97lRTyAs3zdBR/ZJUDbQBLeroWk/1s9zYFB45Mwuow+r9DdV90pgTWW2KAqCDMaPStUWE6f4oI+mJfIMVoiryK+A55/7yin80gUMSfaaz0psTcXy3A/VmI16FbnrxmdcBCnwHvhE+TezvkF2NSyRfZ3e0X6Im5zE0EpiqDYnZRtPlvLvU1yiyGthaZ3tNF0uXOXbubYSNHfkWOwyIJco02AcJX7G6V44s01mKsxX7zKYvbsXZ/SgVqYjy+tF+++rJhFB4vWhvC8OH0maRCWRwtmwNTj4ymqt4pBoumR+4zaFkjqkARpRo7PRTX1JibM+O/6lBE9n3Hzn5UJKMQVeiTM+hBGhoHN00yt4KJU16Hof710yR72+RG7YQ0oezKtks6KuFhir+Is98zzDN06xz1wB7EPsKDnWvg+tEzyaWB4PNlB/HxaOjdKBZwzSVsWnanTDIs0ZfXwp9F67CWCJHaw==
I added a comment on SO:
https://stackoverflow.com/questions/48354266/cgal-skeletonization-compile-errors
Sebastien.
On 01/19/2018 06:49 PM, mathde wrote:
Hi,
I'm new to C++ and CGAL, previously I worked mainly with C#.
I installed CGAL as described on https://www.cgal.org/download/windows.html
and all steps finished successfully.
Then I looked to a CGAL 'Hello world'
(https://doc.cgal.org/latest/Manual/Kernel_23_2points_and_segment_8cpp-example.html);
here I had no problem also; all the code was compiled and run propertly.
But when I tried with more complex things I got a strange issue. For example
I tried to compile Skeletonization
(https://doc.cgal.org/latest/Surface_mesh_skeletonization/Surface_mesh_skeletonization_2simple_mcfskel_example_8cpp-example.html);
here I got a number of errors like these:
C2039 'extract_mean_curvature_flow_skeleton': is not a member of 'CGAL'
C2039 'Matrix': is not a member of 'CGAL::Default'
C2039 'Vector': is not a member of 'CGAL::Default' Skelet
As far as I understand it the #include lines processed without errors, all
needed headers exist.
I tried to search the answer and found this:
http://cgal-discuss.949826.n4.nabble.com/Problem-on-Surface-mesh-deformation-td4661042.html
Unfortunately I don't be sure my case is similar and I don't know what
exactly do the line #define CGAL_EIGEN3_ENABLED as recommended there. In any
case I tried to add it and got the same errors as previous if this #define
inserted after #include <CGAL/extract_mean_curvature_flow_skeleton.h>; in
different case arise a lot of errors like this:
LNK2019 unresolved external symbol __imp___gmpq_add referenced in function
"class CGAL::Gmpq __cdecl CGAL::operator+(class CGAL::Gmpq const &,class
CGAL::Gmpq const &)" (??HCGAL@@YA?AVGmpq@0@AEBV10@0@Z)
I'm stumped and have no ideas how to fix above. Please help me to solve this
problem and start with CGAL.
Thanks, Oleksandr
--
Sent from: http://cgal-discuss.949826.n4.nabble.com/
- [cgal-discuss] Triangulated Surface Mesh Skeletonization compile errors, mathde, 01/19/2018
- Re: [cgal-discuss] Triangulated Surface Mesh Skeletonization compile errors, Sebastien Loriot (GeometryFactory), 01/22/2018
- Re: [cgal-discuss] Triangulated Surface Mesh Skeletonization compile errors, mathde, 01/22/2018
- Re: [cgal-discuss] Triangulated Surface Mesh Skeletonization compile errors, mathde, 01/23/2018
- Re: [cgal-discuss] Triangulated Surface Mesh Skeletonization compile errors, mathde, 01/22/2018
- Re: [cgal-discuss] Triangulated Surface Mesh Skeletonization compile errors, Sebastien Loriot (GeometryFactory), 01/22/2018
Archive powered by MHonArc 2.6.18.