• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            eryar

            PipeCAD - Plant Piping Design Software.
            RvmTranslator - Translate AVEVA RVM to OBJ, glTF, etc.
            posts - 603, comments - 590, trackbacks - 0, articles - 0

            Compiling CGAL

            Posted on 2013-07-25 19:07 eryar 閱讀(5872) 評論(0)  編輯 收藏 引用 所屬分類: 2.OpenCASCADE

            CGAL的安裝編譯

            eryar@163.com

            關(guān)鍵字Key Word:CGAL, C++, Delaunay Triangulation, Voronoi diagram,

            一、引言 Introduction

            wps_clip_image-9127

            CGAL, Computational Geometry Algorithms Library,計(jì)算幾何算法庫。設(shè)計(jì)目標(biāo)是以C++庫的形式提供方便、高效、可靠的幾何算法。CGAL可用于各種需要幾何計(jì)算的領(lǐng)域,如計(jì)算機(jī)圖形學(xué),科學(xué)可視化,計(jì)算機(jī)輔助設(shè)計(jì)與建模,地理信息系統(tǒng),分子生物學(xué),醫(yī)學(xué)成像,機(jī)器人運(yùn)動規(guī)劃,網(wǎng)格生成,數(shù)值方法等。

            The goal of the CGAL Open Source Project is to provide easy access to efficient and reliable geometric algorithms in the form of a C++ library. CGAL is used in various areas needing geometric computation, such as: computer graphics, scientific visualization, computer aided degisn and modeling, geographic information systems, molecular biology, medical imaging, robotics and motion planning, mesh generation, numerical methods... 

            計(jì)算幾何算法庫(CGAL)提供計(jì)算幾何相關(guān)的數(shù)據(jù)結(jié)構(gòu)和算法,如三角剖分(2D 約束三角剖分及二維和三維Delaunay三角剖分),Voronoi圖(二維和三維的點(diǎn),2D加權(quán)Voronoi圖,分割Voronoi圖等),多邊形(布爾操作,偏置),多面體(布爾運(yùn)算),曲線整理及其應(yīng)用,網(wǎng)格生成(二維Delaunay網(wǎng)格生成和三維表面和體積網(wǎng)格生成等),幾何處理(表面網(wǎng)格簡化,細(xì)分和參數(shù)化等),凸殼算法(2D,3D和dD),搜索結(jié)構(gòu)(近鄰搜索,kd樹等),插值,形狀分析,擬合,距離等。

            The Computational Geometry Algorithms Library(CAGL), offers data structures and algorithms like triangulations(2D constrained triangulations and Delaunay triangulations in 2D and 3D, periodic triangulations in 3D), Voronoi diagrams(for 2D and 3D points, 2D additively weighted Voronoi diagrams, and segment Voronoi diagrams), polygons(Boolean operations, offsets, straight skeleton), polyhedra(Boolean operations), arrangements of curves and their applications(2D and 3D envelopes, Minkowski sums), mesh generation(2D Delaunay mesh generation and 3D surface and volume mesh generation, skin surfaces), geometry processing(surface mesh simplification, subdivision and parameterization, as well as estimation of local differential properties, and approximation of ridges and umbilics), alpha shapes, convex hull algorithms(in 2D, 3D and interpolation and placement of streamlines), shape analysis, fitting, and distances(smallest enclosing sphere of points or spheres, smallest enclosing ellipsolid of points, principal component analysis), and kinetic data structures.

            More information please see: http://www.cgal.org/ .

            二、安裝 Installation

            1.編譯器Compiler:Visual Studio

            2.CMake:下載CMake:www.cmake.org

            3.Boost庫:根據(jù)機(jī)器選擇安裝32/64位的Boost庫,http://boost.teeks99.com

            4.Qt:只有要運(yùn)行demo程序時(shí)才需要,根據(jù)需要安裝,最好安裝一下;

            5.libQGLViewer:只有要運(yùn)行3D CGAL的demo程序時(shí)才需要,最好安裝一下;

            6.CGAL安裝包:Download CGAL installer (http://gforge.inria.fr/frs/?group_id=52) .

            運(yùn)行CGAL安裝包,按提示安裝。因?yàn)镃GAL需要GMP和MPFR第三方庫,主要是用來處理多精度的整數(shù)、有理數(shù)(multi precision integers and rational numbers, and for multi precision floating point numbers)。由于Visual C++對GMP和MPFR的工程支持不是很好,CGAL提供編譯好的GMP和MPFR,由安裝包在安裝時(shí)從網(wǎng)上下載。所以在安裝過程中如果需要下載GMP和MPFR,一定要下載。

            三、編譯 Compiling

            先用CMake生成Visual Studio的工程文件。打開CMake,設(shè)置sorce code和build the binaries的目錄,如下圖所示:

            wps_clip_image-8232

            點(diǎn)擊Configure,選擇所需要的編譯器,如下圖所示:

            wps_clip_image-24042

            希望一切都順利,你將會看到“Configuring done”,如下圖所示:

            wps_clip_image-12874

            但是,也可能第一次并沒有成功,可能會出現(xiàn)下面的錯誤,如找不到Boost庫:

            Can not find BOOST_INCLUDE_DIR。

            這時(shí)就需要手動在CMake中添加一下,點(diǎn)Add Entry,添加相應(yīng)的路徑,如下圖所示:

            wps_clip_image-21988

            類似地,添加其它報(bào)錯的Boost庫,如下圖所示:

            wps_clip_image-27602

            再點(diǎn)“Configure”,如果“Generate”可以點(diǎn)擊,就點(diǎn)擊“”生成Visual Studio的解決方案。

            生成的解決方案如下圖所示:

            wps_clip_image-16132

            打開解決方案,編譯整個(gè)解決方案即可。

            Congratulations!

             

            PDF Version: Compiling CGAL

            91久久精品视频| 日本五月天婷久久网站| 热久久国产精品| 亚洲国产成人精品女人久久久| 久久婷婷午色综合夜啪| 国产成人久久激情91| 无码任你躁久久久久久| 久久精品人人槡人妻人人玩AV| 久久久中文字幕| 99久久精品国产一区二区| 99久久99这里只有免费的精品| 久久国产成人午夜aⅴ影院| 人妻丰满AV无码久久不卡 | 国产成人无码精品久久久久免费| 四虎亚洲国产成人久久精品| 久久久噜噜噜久久熟女AA片| 欧美国产精品久久高清| 久久精品国产福利国产秒| 伊人久久五月天| 久久久久国产| 国内精品久久久久久久coent | 久久精品国产精品亚洲精品| 精品久久久无码21p发布| 久久亚洲av无码精品浪潮| 99久久婷婷国产一区二区| 久久精品亚洲精品国产色婷 | 久久综合一区二区无码| 久久精品男人影院| 国产精品久久一区二区三区 | 国内精品久久久久久久涩爱| 国产精品久久久久久久久鸭| 久久精品夜夜夜夜夜久久| 热re99久久精品国99热| 久久人人妻人人爽人人爽| 亚洲中文久久精品无码ww16| 久久99久国产麻精品66| 精品综合久久久久久98| 久久午夜夜伦鲁鲁片免费无码影视 | 波多野结衣久久精品| 久久精品国产色蜜蜜麻豆| 亚洲精品乱码久久久久久自慰|