English 中文(简体)
How do I interpolate normals on Catmull-Clark Subdivision Surfaces
原标题:
  • 时间:2009-11-16 20:36:50
  •  标签:
  • graphics
  • 3d

I m using CCSS to generate smooth surfaces.

I ve been using the regular subdivision rules to interpolate the surface/vertex normal, but I think this may be wrong.

Are there different stencils to interpolate normals?

最佳回答

The "normals" from the control mesh are not really normals to begin with. They re just made-up vectors at each vertex, and not something you want to interpolate.

Instead, use the derivative stencils, which yield tangent vectors in two directions. Once you have your tangent vectors, cross them to get a normal. The derivative stencils are:

1   4  1
0  (0) 0
-1 -4 -1

and

-1  0  1
-4 (0) 4
-1  0  1
问题回答

暂无回答




相关问题
3D Engine for Driving Simulation [closed]

Is there any open-source 3D graphics and physics engine specialized in driving simulation? Something like a configurable game engine targeted at games that involve driving, or something more ...

How to rotate 3d object on Z axis only?

We used 3DTools (http://3dtools.codeplex.com) to draw a 3d line, it allows user rotate it by mouse. I have question, how to limit user can rotate it on Z axis only? or on X axis, Y axis only? <...

WPF 3d rotation animations

I have a few 3d rectangles on my screen that I want to pivot around the Y axis. I want to press down with the mouse, and rotate the 3d object to a max rotation, but when the user moves their mouse, ...

Java - Zoom / 3D Data Visualization Libraries

What are the best libraries/frameworks for doing 3D and/or Zoom interfaces in Java? I d like to be able to do some prototyping of creating new types of interfaces for navigating within data and ...

Using Unreal 3 Engine within a .NET application

Now that the Unreal Development Kit for Unreal 3 engine is free I am thinking about utilizing it for an appication. Do you think it is possible to emebedd a Unreal 3 powered 3D window into a .NET (WPF ...

WPF convert 2d mouse click into 3d space

I have several geometry meshes in my Viewport3D, these have bounds of (w:1800, h:500, d:25). When a user clicks in the middle of the mesh, I want the Point3D of (900, 500, 25)... How can I achieve ...

热门标签