几何造型器共363篇

几何造型系统是指能够定义、描述、生成几何模型,并能够进行交互编辑处理的系统称为几何造型系统。采用几何造型技术,可以将物体的形状及其各种属性存储在计算机内,形成该物体的几何模型。这样的几何模型是对原物体确切的数学表达,或对其某种状态的真实模拟。
OpenCascade Ray Tracing Rendering-卡核

OpenCascade Ray Tracing Rendering

OpenCascade Ray Tracing Rendering eryar@163.com 摘要Abstract:OpenCascade6.7.0中引入了光线跟踪算法的实现。使用光线跟踪算法可实现高质量的渲染效果,且可以使用GPU提升渲染效率。  ...
追忆清华逝水年华 (之一)-卡核

追忆清华逝水年华 (之一)

公元2018年9月16日,清华大学计算机科学与技术系建系六十周年系庆,"贵系"1989级同学入学29周年纪念,将近三十年。往日如昨,那一年青春年少,英姿勃发,高举理想主义的大旗,一路高...
顾险峰的头像-卡核顾险峰2年前
01040
OpenCascade Shape Representation in OpenSceneGraph-卡核

OpenCascade Shape Representation in OpenSceneGraph

OpenCascade Shape Representation in OpenSceneGraph eryar@163.com 摘要Abstract:本文通过程序实例,将OpenCascade中的拓朴数据(边、面)离散化后在OpenSceneGraph中进行显示。有了这些离散...
Bounding Volume Hierarchy BVH in OpenCASCADE-卡核

Bounding Volume Hierarchy BVH in OpenCASCADE

Bounding Volume Hierarchy BVH in OpenCASCADE eryar@163.com Abstract. Bounding Volume Hierarchy(BVH) organizes geometric objects in the tree based on spatial relationships. Each nod...
OpenCASCADE构造一般曲面-卡核

OpenCASCADE构造一般曲面

OpenCASCADE构造一般曲面 eryar@163.com Abstract. 本文主要介绍常见的曲面如一般柱面(拉伸曲面)、旋转面在OpenCASCADE中的构造方法,由此思考一般放样算法的实现。 Key Words. Common Surfac...
Render OpenCascade Geometry Curves in OpenSceneGraph-卡核

Render OpenCascade Geometry Curves in OpenSceneGraph

在OpenSceneGraph中绘制OpenCascade的曲线 Render OpenCascade Geometry Curves in OpenSceneGraph eryar@163.com 摘要Abstract:本文简要说明OpenCascade中几何曲线的数据,并将这些几何...
Intel TBB in OpenCASCADE-卡核

Intel TBB in OpenCASCADE

Intel TBB in OpenCASCADE eryar@163.com   OpenCASCADE使用了一个开源的第三方库Intel TBB,这个并行计算库主要用于网格化、布尔操作等复杂算法,可以明显提升速度。...
Mesh Algorithm in OpenCascade-卡核

Mesh Algorithm in OpenCascade

Mesh Algorithm in OpenCascade eryar@163.com Abstract. Rendering a generic surface is a two steps process: first, computing the points that will form the mesh of the surface and the...
OpenCASCADE Quaternion-卡核

OpenCASCADE Quaternion

OpenCASCADE Quaternion eryar@163.com Abstract. The quaternions are members of a noncommutative division algebra first invented by William Rowan Hamilton. The idea for quaternions o...
Open Cascade DataExchange DXF-卡核

Open Cascade DataExchange DXF

Open Cascade DataExchange DXF eryar@163.com 摘要Abstract:对DXF文本格式进行详细介绍,并介绍了如何使用开源库dxflib对DXF文件进行读写操作,并将DXF文件中图形导入到OpenCascade。  ...
清华笔记:计算共形几何讲义 (17)全纯二次微分(holomorphic quadratic differential)-卡核

清华笔记:计算共形几何讲义 (17)全纯二次微分(holomorphic quadratic differential)

【上课时间:每周二和周四上午9:50-11:20AM;地点:清华大学,近春园西楼三楼报告厅。欢迎任何有兴趣的朋友,前来旁听指导。】上次课程,我们讲解了调和映照的理论框架。这次课程,我们应用从度...
顾险峰的头像-卡核顾险峰2年前
0920
QString::toStdString() crashes-卡核

QString::toStdString() crashes

今天在Qt中开发程序时,遇到一个QString::toStdString()的内存问题,用法如下: void test(const QString& theFileName) { std::string aFileName = theFileName.toStdString(); std::ofstr...