
CGAL
文章平均质量分 86
seamanj
这个作者很懒,什么都没留下…
展开
-
INSTALL CGAL on ubuntu and use it in qt
Recently, i have read a paper named "as rigid as possible surface modeling", when I turned to its project web page, the author told us it had been implemented in CGAL. So with having a try mind, I dec原创 2016-01-29 00:20:51 · 975 阅读 · 0 评论 -
Using vs2015 64-bit compiler to build up CGAL-4.7 on window 7
Based on previous blog:http://blog.youkuaiyun.com/seamanj/article/details/50616654, 1. download CGAL4.7 https://github.com/CGAL/cgal/releases/tag/releases/CGAL-4.7 CGAL-4.7-Setup.exe 2. i原创 2016-04-01 02:34:29 · 1933 阅读 · 0 评论 -
CGAL join_vertex source code analysis
location: CGAL\boost\graph\Euler_operations.h http://doc.cgal.org/latest/BGL/group__PkgBGLEulerOperations.html#ga585a3324ef493cc1340da5cb364b772c /** * joins the two vertices incident to `h`, (原创 2016-03-08 21:09:30 · 1173 阅读 · 0 评论 -
CGAL remove_face source code analysis
location: CGAL\boost\graph\Euler_operations.h http://doc.cgal.org/latest/BGL/group__PkgBGLEulerOperations.html#gacfae7ff8e782da55b941e4487e86c738 /** * removes the incident face of `h` and原创 2016-03-08 20:12:49 · 831 阅读 · 0 评论 -
CGAL join_face source code analysis
namespace EulerImpl { template typename boost::graph_traits::halfedge_descriptor join_face(typename boost::graph_traits::halfedge_descriptor h, Graph& g) { typedef typename boost::graph_tr原创 2016-03-07 23:26:06 · 922 阅读 · 0 评论 -
Operations on Surface_mesh in CGAL
#include #include #include #include typedef CGAL::Simple_cartesian K; typedef CGAL::Surface_mesh Mesh; typedef Mesh::Vertex_index vertex_descriptor; typedef Mesh::Face_index face_descriptor; in原创 2016-03-04 09:33:59 · 1950 阅读 · 0 评论 -
iterate the vertices around a vertex
http://doc.cgal.org/latest/BGL/group__PkgBGLIterators.html#ga7746cb7b28520877375dfff6ec7bd32c For Surface_mesh, see http://doc.cgal.org/latest/Surface_mesh/index.html#Chapter_3D_Surface原创 2016-03-09 02:02:26 · 550 阅读 · 0 评论 -
Operations on edges in polyhedron
http://doc.cgal.org/latest/Polyhedron/classCGAL_1_1Polyhedron__3_1_1Vertex.html原创 2016-03-04 23:13:36 · 527 阅读 · 0 评论 -
CGAL collapse_edge source code analysis
location: CGAL\boost\graph /** * collapses an edge in a graph. * * \tparam Graph must be a model of `MutableFaceGraph` * Let `v0` and `v1` be the source and target vertices, and let `e` and原创 2016-03-08 05:08:04 · 2054 阅读 · 0 评论 -
CGAL 4.9 - Triangulated Surface Mesh Deformation
Here, I would like to derive the formula (10) For triangle vjvivmv_jv_iv_m, we have the following three equation which is related to viv_iwij∥(v′i−v′j)−Ri(vi−vj)∥2w_{ij}\|(v'_i-v'_j)-R_i(v_i-v_j)\|^原创 2017-01-02 04:36:46 · 1890 阅读 · 0 评论 -
Graph Concepts
Graph Concepts The heart of the Boost Graph Library (BGL) is the interface, or concepts (in the parlance of generic programming), that define how a graph can be examined and manipulated in a data-str转载 2016-03-05 01:48:56 · 677 阅读 · 0 评论 -
CGAL中Point的引用
Point& p = spMyPolyhedron->vertex_point_map[*vb]; glm::vec4 point = ctm * glm::vec4(p.x(), p.y(), p.z(), 1.f ); p = Point(point.x, point.y, point.z);原创 2016-03-04 20:32:24 · 925 阅读 · 0 评论 -
config cgal4.7 on ubuntu
1. download the installation program from https://github.com/CGAL/cgal/releases/tag/releases/CGAL-4.7 here, i choose CGAL-4.7.zip 2. then extract to somewhere(here, I extract them to /opt s原创 2016-02-13 09:16:33 · 1981 阅读 · 1 评论 -
ubuntu下使用CGAL的pro文件
#------------------------------------------------- # # Project created by QtCreator 2016-01-04T15:08:40 # #------------------------------------------------- QT += core gui opengl xml C原创 2016-02-14 07:47:43 · 1053 阅读 · 0 评论 -
CGAL1_1 Three Points and One Segment
1.把教程里面的代码copy进去 #include #include typedef CGAL::Simple_cartesian Kernel; typedef Kernel::Point_2 Point_2; typedef Kernel::Segment_2 Segment_2; int main() { Point_2 p(1,1), q(10,10); std::cout原创 2016-02-02 05:12:12 · 528 阅读 · 0 评论 -
WIN7 VS2010下配置 CGAL-4.7
CGAL虽然配置看上去不很难,但是由于集成了很多库,所以第一次配置前前后后花了我差不多两天的时间 1.去官网下载安装程序 https://github.com/CGAL/cgal/releases/tag/releases/CGAL-4.7 CGAL-4.7-Setup.exe 2.这里我选择32位的版本,安装完后,最后有个提示 把这个目录增加到PATH里面 3原创 2016-02-01 01:34:58 · 2635 阅读 · 0 评论 -
how to build a cgal program in vs2010
here we use example/surface_modeling/all_roi_assign_example.cpp as an example first we need to add some including directories: then we also need to add some library directories:原创 2016-02-10 23:26:39 · 711 阅读 · 0 评论 -
how to build a cgal program in qt under ubuntu
when you create a new project, don't forget to add the following sentence in .pro file LIBS += -lCGAL -lCGAL_Core it will remind the system to link CGAL library. TEMPLATE = app CONFIG +原创 2016-02-17 02:32:01 · 417 阅读 · 0 评论 -
BGL_polyhedron_3/normals.cpp analysis
#include #include #include #include #include // Polyhedron #include #include #include #include // Graph traits adaptors #include typed原创 2016-02-16 00:13:51 · 506 阅读 · 0 评论 -
something about vertex in graph
#include #include #include #include #include #include #include typedef CGAL::Simple_cartesiandouble> Kernel; typedef Kernel::Vector_3原创 2016-02-17 01:48:28 · 755 阅读 · 0 评论 -
how to calculate the QR decomposition of a matrix
In many papers(such as [1], [2]), we need to solve the polar decomposition of a matrix which decompose a matrix A into a rotation matrix R and a symmetric matrix S, s.t. A = RS Here, we will be u原创 2016-02-05 05:18:13 · 1037 阅读 · 0 评论 -
在mac上安装cgal4.11时,QT5 和qglviewer的设置
将QT5_DIR 设置为/Users/xxx/Qt/5.10.0/clang_64/lib/cmake/Qt5原创 2017-12-31 00:19:15 · 861 阅读 · 0 评论