Location:
Search - normals
Search list
Description: visual c++开发的一个小游戏
喜欢的下-visual development of a small game like the next
Platform: |
Size: 107598 |
Author: 王客 |
Hits:
Description: souce code OpenGL normals
Platform: |
Size: 39411 |
Author: huangwei |
Hits:
Description: 一个外国人写的插值细分曲线的程序,Interpolatory Subdivision Curves via Diffusion of Normals
Platform: |
Size: 69371 |
Author: 李志军 |
Hits:
Description: 簡單的畫圖。初學者的。可以多種選擇圖形表面。操作十分簡單。用方向鍵控制左右移動
Platform: |
Size: 42537 |
Author: Tear |
Hits:
Description: 自己写的求opengl法线向量的算法。计算效果还不错
Platform: |
Size: 3184 |
Author: 乖乖 |
Hits:
Description: VC++与openGL开发的求法矢量的简单例题程序-VC++ With openGL developed a simple method Vector Example procedures
Platform: |
Size: 65536 |
Author: 朱军 |
Hits:
Description: visual c++开发的一个小游戏
喜欢的下-visual development of a small game like the next
Platform: |
Size: 122880 |
Author: 王客 |
Hits:
Description: souce code OpenGL normals
Platform: |
Size: 38912 |
Author: huangwei |
Hits:
Description: 一个外国人写的插值细分曲线的程序,Interpolatory Subdivision Curves via Diffusion of Normals-Written by a foreigner curve interpolating subdivision procedures, Interpolatory Subdivision Curves via Diffusion of Normals
Platform: |
Size: 68608 |
Author: 李志军 |
Hits:
Description: 簡單的畫圖。初學者的。可以多種選擇圖形表面。操作十分簡單。用方向鍵控制左右移動-A simple drawing. Beginners. Graphic surface can be a wide range of choices. Operation is very simple. About using the arrow keys to control movement
Platform: |
Size: 65536 |
Author: Tear |
Hits:
Description: 自己写的求opengl法线向量的算法。计算效果还不错-Wrote it myself seeking opengl normal vector algorithms. Calculation of the effect of good
Platform: |
Size: 3072 |
Author: 乖乖 |
Hits:
Description: 物体三维效果的实现 对编程很有帮助 物体三维效果的实现 -Three-dimensional objects, the effect of implementation of the program very useful three-dimensional effect of implementation objects
Platform: |
Size: 56320 |
Author: |
Hits:
Description: BMyCrust take as input a 3D scatter points cloud and return a tight, manifold, triangulation.
Remember that crust algorithm needs a cloud representing a volume, so open surface may give inaccurate results. For example : a plane can not be triangulated, half-sphere is in doubt, a sphere with a small hole shoud be good.
The more points are given the best the surface will be fitted, of course in this case you would have to wait more and in the worst case a memory help error may occurs. The best results are obtained with more points in high curvature feature.
The old version did not ensure the output surface to be a manifold so it could be used only for graphical purpose. In the new one a tight, regular manifold is returned. It as outward normals orientation, after using this algorithm is very easy to get an STL file from a point cloud.
I added a manifold extraction tool that also correct the errors (slivers) generated by delaunayn during the initial tessellation.-BMyCrust take as input a 3D scatter points cloud and return a tight, manifold, triangulation.
Remember that crust algorithm needs a cloud representing a volume, so open surface may give inaccurate results. For example : a plane can not be triangulated, half-sphere is in doubt, a sphere with a small hole shoud be good.
The more points are given the best the surface will be fitted, of course in this case you would have to wait more and in the worst case a memory help error may occurs. The best results are obtained with more points in high curvature feature.
The old version did not ensure the output surface to be a manifold so it could be used only for graphical purpose. In the new one a tight, regular manifold is returned. It as outward normals orientation, after using this algorithm is very easy to get an STL file from a point cloud.
I added a manifold extraction tool that also correct the errors (slivers) generated by delaunayn during the initial tessellation.
Platform: |
Size: 6042624 |
Author: naz |
Hits:
Description: A good document on how to calculate vertex normals for open gl lighting . A good pdf
Platform: |
Size: 47104 |
Author: jayanth |
Hits:
Description: Gender Classification based on Facial Surface Normals
Platform: |
Size: 254976 |
Author: Alarmmy |
Hits:
Description: opengl下一个球体的细分过程,对图形学基础学习很有帮助-Curved surfaces are approximated by polygons
How do we shade?
Flat shading
Smooth shading
Two questions:
How do we determine normals at vertices?
How do we calculate shading at interior points?
Platform: |
Size: 116736 |
Author: neekazhang |
Hits:
Description: This file contains a set of 3D models with the following characteristics:
■p: nx3 array of 3D points
■t: ntx3 array of triangles id. First points flagged as 1.
■tnorm: ntx3 arrays normals of triangles with outward orientation.
You can use this package to test your algorithms.
Models can be dowloaded here.
All models were created with the new MyRobustCrust.
In the new version all triangles have the same orientation, this allows for nice graphics rendering.
Platform: |
Size: 2048 |
Author: tao lu |
Hits:
Description: This tool is a simplification of the ballpivoting algorithm. It imagines a bella eating a delaunay traignulation in order to extract a manifold surface.
It requires a single parameter: radius of the fretting ball.
Ball Fretting
Given a uniform sampled filled point cloud returns a tight triangulation.
Input:
■tetr: a set of tetraedrons, nx4 array. If the cloud is not tesselated yet you need to call a delaunay triangulator prior calling this function.
■p : nx3 array, 3D set of points.
■r : the only parameter of the algorithm, the radius of the fretting ball
Output:
■t : triangles ids, nx3 array
■tnorm: normals of triangles with outwards orientation
Platform: |
Size: 851968 |
Author: tao lu |
Hits:
Description: InPolyedron detects points inside a manifold closed surface (even non convex ones). The normal orientation is assumed to be outwards. Warning there is no check for closed surface or normal orientation, open surfaces will give nonsense results.
In the limit of numerical accuracy, points lying on the surface will be considered in.
Usage
Input:
■p: points of the surface npx3 array
■t: triangles indexes, first points flagged as one, ntx3 array
■tnorm: outward normals of traingles, ntx3 array
■qp: points to be queried, nqx3 array
Output:
■in: nqx1 logical vector, true for in, false for out-InPolyedron detects points inside a manifold closed surface (even non convex ones). The normal orientation is assumed to be outwards. Warning there is no check for closed surface or normal orientation, open surfaces will give nonsense results.
In the limit of numerical accuracy, points lying on the surface will be considered in.
Usage
Input:
■p: points of the surface npx3 array
■t: triangles indexes, first points flagged as one, ntx3 array
■tnorm: outward normals of traingles, ntx3 array
■qp: points to be queried, nqx3 array
Output:
■in: nqx1 logical vector, true for in, false for out
Platform: |
Size: 727040 |
Author: tao lu |
Hits:
Description: 估计点云的法线,选择点周围的面皮,面片法线相加,求均值-Estimated cloud normals, select points around the dough, adding the patch normal, averaging
Platform: |
Size: 1024 |
Author: YMH |
Hits: