GtsSurface* Mesh::TO_gts(GtsSurface* s) { for( auto CMFace : HEF ) { GtsVertex* v1=gts_vertex_new(s->vertex_class,CMFace->edge->cMVertex->vertex.x,CMFace->edge->cMVertex->vertex.y,CMFace->edge->cMVertex->vertex.z); GtsVertex* v2=gts_vertex_new(s->vertex_class,CMFace->edge->next->cMVertex->vertex.x,CMFace->edge->next->cMVertex->vertex.y,CMFace->edge->next->cMVertex->vertex.z); GtsVertex* v3 = gts_vertex_new(s->vertex_class,CMFace->edge->next->next->cMVertex->vertex.x,CMFace->edge->next->next->cMVertex->vertex.y,CMFace->edge->next->next->cMVertex->vertex.z);...
GtsSurface* Mesh::TO_gts(GtsSurface* s) { GtsVertex** vertices=new GtsVertex*(); for( auto CMFace : HEF ) { GtsVertex* v1=gts_vertex_new(s->vertex_class,CMFace->edge->cMVertex->vertex.x,CMFace->edge->cMVertex->vertex.y,CMFace->edge->cMVertex->vertex.z); GtsVertex* v2=gts_vertex_new(s->vertex_class,CMFace->edge->next->cMVertex->vertex.x,CMFace->edge->next->cMVertex->vertex.y,CMFace->edge->next->cMVertex->vertex.z); GtsVertex* v3 = gts_vertex_new(s->vertex_class,CMFace->edge->next->next->cMVertex->vertex.x,CMFace->edge->next->next->cMVertex->vertex.y,CMFace->edge->next->next->cMVertex->vertex.z);...
convert to customized datastructure
I'm trying to compile Boost libraries to use it with CGAL , I'm following these guidlines: CGAL guidline1 CGAL guidline2 after running ->.\bootstrap Then, -> .\b2 link=static,shared threading=single,multi variant=debug,release I stopped at compiling CGAL using cmake, it's shows the following error: Could not find the following static Boost libraries: boost_thread cmake Cmake error log here notice that: boost_1_67_0\stage\lib folder contains all requires .lib files except "libboost_thread" library...