• <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 閱讀(5859) 評(píng)論(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)動(dòng)規(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)格簡(jiǎn)化,細(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++對(duì)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

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

            wps_clip_image-12874

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

            Can not find BOOST_INCLUDE_DIR。

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

            wps_clip_image-21988

            類似地,添加其它報(bào)錯(cuò)的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

            18岁日韩内射颜射午夜久久成人| 久久男人中文字幕资源站| 亚洲国产成人久久一区WWW| 欧洲性大片xxxxx久久久| 久久人妻无码中文字幕| 人妻丰满AV无码久久不卡| 国产成人久久777777| 亚洲欧美另类日本久久国产真实乱对白 | 久久久无码一区二区三区| 精品国产福利久久久| 亚洲精品tv久久久久| 久久夜色精品国产欧美乱| 久久国产精品波多野结衣AV| 国产精品免费看久久久| 99久久香蕉国产线看观香| 亚洲国产成人久久精品影视| 久久夜色精品国产亚洲av| 精品久久一区二区三区| 久久婷婷五月综合国产尤物app | 9191精品国产免费久久| 2021国产精品久久精品| 久久se精品一区二区影院| 久久精品人人做人人爽电影蜜月 | 欧美一级久久久久久久大片| 国产精品99久久免费观看| 久久亚洲精品成人无码网站| 久久九九免费高清视频| 久久精品草草草| 久久午夜伦鲁片免费无码| 久久伊人精品一区二区三区| 久久久久香蕉视频| 久久er国产精品免费观看8| 一本大道久久a久久精品综合| 久久久久久久97| 无码人妻久久一区二区三区| 亚洲色婷婷综合久久| 少妇久久久久久被弄高潮| 国产精品美女久久福利网站| 亚洲国产成人久久精品99| 亚洲国产成人精品女人久久久| 久久久久久亚洲精品无码|