摘要:
Finite Element Analysis分为pre-processing , analyzing, post-processingAbaqus Document : http://abaqusdoc.ucalgary.ca第一阶段: 使用TetGen \ NetGen等工具将stl模型文件四面... 阅读全文
摘要:
原文链接:http://www.cnblogs.com/dubing/archive/2011/10/10/2085742.html一、先概述下实现流程。 CUDA在执行的时候是让host里面的一个一个的kernel按照线程网格(Grid)的概念在显卡硬件(GPU)上执行。每一个线程网格又可以包含... 阅读全文
摘要:
1限定三角化1.1 定义Delaunay三角剖分:Delaunay三角剖分是 Boris Delaunay 于1934 年提出的。它具有一些优秀的性质,例如说它最大化三角剖分T中所有三角形的最小角,以避免剖分出扁平的三角形。Delaunay边:e是E中满足一下条件的边:存在一个圆经过其端点a、b,圆... 阅读全文
摘要:
Jia-Bin Huang童鞋收集,此童鞋毕业于国立交通大学,之前拍过很多CVPR举办地科罗拉多州的照片,这里大多为matlabcode,link:https://netfiles.uiuc.edu/jbhuang1/www/resources/vision/index.html包括:Feature... 阅读全文
摘要:
CGAL的资料尤其是中文资料少之又少,现根据自己要完成的工作进行一个记录和总结,也希望能填补资料的空缺。在CGAL中,使用半边结构Halfedge Data Structure来存储网格信息,另外一个类似于CGAL的库OpenMesh同样使用的是这种半边结构。关于半边结构,请点这里:http://w... 阅读全文
摘要:
一.unique函数类属性算法unique的作用是从输入序列中“删除”所有相邻的重复元素。该算法删除相邻的重复元素,然后重新排列输入范围内的元素,并且返回一个迭代器(容器的长度没变,只是元素顺序改变了),表示无重复的值范围得结束。// sort words alphabetically so we ... 阅读全文
摘要:
// A simple quickref for Eigen. Add anything that's missing.// Main author: Keir Mierle#include Matrix A; // Fixed rows and cols. Same a... 阅读全文
摘要:
When talking about distances, we usually mean the shortest : for instance, if a point X is said to be at distance D of a polygon P, we generally assum... 阅读全文
摘要:
Computing minimum volume bounding box is a hard problem in computer science. Exact algorithm costs O(n3) time complexity.However, for lots of applicat... 阅读全文
摘要:
在看C++编程思想中,每个练习基本都是使用ofstream,ifstream,fstream,以前粗略知道其用法和含义,在看了几位大牛的博文后,进行整理和总结:这里主要是讨论fstream的内容:[java]view plaincopyprint?#includeofstream//文件写操作内存写... 阅读全文