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的更多相关文章
随机推荐
- 懒加载实现的分页&&网站footer自适应
最近在做手机端,发现下拉刷新和上拉加载的jq控件很少而且自我感觉不好用,比如iscroll之类-- 然后自己写了个懒加载的,也很简单,最基础的代码[不喜勿喷,但蛮实用的] wap手机端懒加载分页: 用 ...
- session放入缓存(redis)、DB
为什么要把SESSION保存在缓存 就php来说,语言本身支持的session是以文件的方式保存到磁盘文件中,保存在指定的文件夹中,保存的路径可以在配置文件中设置或者在程序中使用函数session_s ...
- 关于java对Excel的读取
/*注意:读取的Excel文件 请另存为2003版本的Excel,否则可能会报错别忘记导入第三方的jar包*/package com.zzp.ExcelParse;import jxl.Cell;im ...
- sqlserver行列转换问题(网上搜集)
(列->行) 一.FOR XML PATH 简单介绍 那么还是首先来介绍一下FOR XML PATH ,假设现在有一张兴趣爱好表(hobby)用来存放兴趣爱好,表结构如 ...
- ionic环境搭建及新建项目中的各种问题
具体流程可见http://bbs.ionic-china.com/read-7.html 问题1.安装ionic cordova失败 解决方法:修改npm的源,npm config set regis ...
- sublime简书安装配置
sublime-text3编辑器 安装 sudo add-apt-repository ppa:webupd8team/sublime-text-3 sudo apt-get update sudo ...
- WireShark网络性能分析
最近生产上出现一个性能问题,表现为:行情延时5s左右.从log一路追查下去,发现是我们自己写的一个行情网关(部署在xx.xx.xx.132)<->第三方的中转网关(部署在xx.xx.xx. ...
- Windows下QT Creator工程中添加文件夹
在QT项目,常常会有很多头文件和源文件,但是QT Creator中却没有添加文件夹的功能,造成项目代码混乱. 下面是建立文件的步骤: 1.打开工程目录,在目录下建立文件夹,如建立文件SerialP ...
- CVPR历年Best Papers
作者:我爱机器学习原文链接:CVPR历年Best Papers CVPR (Computer Vision)(2000-2016) 年份 标题 一作 一作单位 2016 Deep Residual L ...
- Android源码编译出错解决办法
编译环境:Ubuntu12.04 64位 Android源码:Android 4.3 以下问题是笔者亲自碰到,通过网上查询整合在一起的. 1.error while loading shared li ...