Fork me on GitHub

WPF/E + 3D [来自Msdn forums]

WPF/E doesn't have built-in 3D functionality.

However, approximate 3D functionality can be obtained using some simple tricks. You may see the demonstration on http://www.windowsvista.si/main.htm?show3d=1&content=home (of course WPF/E should be already installed)

This site, which you all have probably seen, has an url tweak to show some 3D content. It is just a demo, but almost any simple 3D object can be displayed. As there is no frustum clipping (yet), the objects should be always in front of the camera. With frustum clipping (consequently it makes tesselation) 3D rooms are possible and even some kind of a 3D game.

If you wonder, how it is made, this is the technique:

- create an Image element with MatrixTransform and PolyLineSegment clipping geometry
- image width and height should both be 1 (actual size is defined later by transform matrix)
- polyline clipping geometry should be a triangle, which occupies the area, which will be used and displayed as a texture (3 polygon points represent 3 texture coordinates)
- 3D transformation by matrix and projective division should be made, as in every other 3D engine. Transformed vertices in 2D are used to align Image.
- matrix coefficients for Image MatrixTransform are computed by inverting tex-coord matrix and multiplying by 2D transformed vertices (numbers in parenthesis are matrix dimensions):
    M(3x2) = V(3x2) * T(3x3)^(-1)
- all coefficients are multiplied by half the desired viewport size, and offset is increased to the half of the viewport size
- the image is then displayed by aligning each visual vertex into 2D transformed vertex.

All this tasks can be visible in javascript for 3D objects, http://www.windowsvista.si/js/object_3d.js

The cubic object is currently hard codec into the source code, but it can be any simple object. For now, I didn't use any lighting and coloring, but it may be done by using opacitymask.


http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1223869&SiteID=1
posted @ 2007-04-29 20:57  张善友  阅读(1072)  评论(1编辑  收藏  举报