MeshDog
一、TransforMesh
1. CGAL
(http://www.cgal.org/download/windows.html#GeneralPrerequisites)
预装软件
1.1 cmake
1.2 Boost (添加环境变量BOOST_ROOT)
a. download (https://sourceforge.net/projects/boost/files/boost-binaries/)
b. install (c:\dev\libboost_1_59_0)
c. set two environment variables
BOOST_LIBRARYDIR=C:\dev\libboost_1_59_0\lib32-msvc-xx.0
BOOST_INCLUDEDIR=C:\dev\libboost_1_59_0
d. add the path to the Boost dll files in PATH environment variable (C:\dev\libboost_1_59_0\lib32-msvc-xx.0)
1.3 Qt
a. download (http://www.qt.io/download-open-source/#section-5)
b. add the environment variable QTDIR (C:\Qt\Qt5.5.1)
c. add to the path the bin directory of Qt (C:\Qt\Qt5.5.1\5.5\msvcXXXX_XX\bin)
To avoid any conflict with another dll with the same name from another folder, add this path as the first in the list.
1.4 BLAS (http://icl.cs.utk.edu/lapack-for-windows/lapack/#libraries_mingw)
1.4.1 FORTRAN COMPILE (Intel C and Fortran Compilers)
1.4.2 BLAS
1.5 CGAL
a. install (choose ‘C:\dev\CGAL-4.7’ as installation directory)
b. 步骤
1.1 open cmake-gui
1.2 For both "Where is the source code" and "Where to build the binaries", specify the CGAL Installation folde. I set 'C:\dev\CGAL-4.7' for source and 'C:\dev\CGAL-4.7\build' as binaries
1.3 Configure, Generate
1.4 In the directory 'C:\dev\CGAL-4.7\build', a solution file named CGAL.sln has been created
1.5 Run Visual Studio and compile ALL_BUILD project both in Debug and Release.
1.6 Add to your path the bin directory of the build. I add to my PATH C:\dev\CGAL-4.7\build\bin
2. CImg
3. CEP
二、MeshDog/MeshHog
MeshDog的更多相关文章
随机推荐
- angularJS ngClass如何使用
<!doctype html> <html ng-app="firstApp"> <head> <meta charset="u ...
- visual studio错误解决 [error LNK1104: 无法打开文件“gdi32.lib”]
哔了狗.我是win7装的vs2013,本着体验一下"新"玩意的心情.(然而2017都快出来了),没想到竟遇到如此粗鄙的问题. 从错误信息上明显可以了解是缺少一个静态库.(当然错误信 ...
- Javascript学习笔记3 Javascript与BOM简介
什么是BOM BOM是browser object model的缩写,简称浏览器对象模型 BOM提供了独立于内容而与浏览器窗口进行交互的对象 由于BOM主要用于管理窗口与窗口之间的通讯,因此其核心对象 ...
- ios基础篇(二十九)—— 多线程(Thread、Cocoa operations和GCD)
一.进程与线程 1.进程 进程是指在系统中正在运行的一个应用程序,每个进程之间是独立的,每个进程均运行在其专用且受保护的内存空间内: 如果我们把CPU比作一个工厂,那么进程就好比工厂的车间,一个工厂有 ...
- merge,join,concat
merge交集 join并集 concat axis=0 竖着连 axis=1 横着连
- 当 jquery.unobtrusive-ajax.js 遇上Web API
最近在熟悉Abp框架,其基于DDD领域驱动设计...前段可以绕过mvc直接调用根据app层动态生成的webapi,有点神奇~,Web API之前有简单接触过,WCF的轻量级版,一般用于做一写开发性的服 ...
- LeetCode Spiral Matrix
class Solution { public: vector<int> spiralOrder(vector<vector<int> > &matrix) ...
- 如何应用.NET中的消息队列服务
建立一个队列是应用MSMQ的第一步.您可以通过Windows计算机管理控制台中的消息队列选项完成这一操作,或者自己编程建立一个队列.列表A中的C#代码建立了一个新的私有MSMQ消息队列(如果不存在队列 ...
- session的工作原理
asp中Session的工作原理:asp的Session是具有进程依赖性的.ASP Session状态存于IIS的进程中,也就是inetinfo.exe这个程序.所以当inetinfo.exe进程崩溃 ...
- windows8.1下android开发环境搭建(Eclipse+Android sdk+ADT+Genymotion)
一.基本jdk.eclipse环境 二.android sdk 1.下载安装:https://developer.android.com/sdk/installing/index.html?pkg=t ...