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
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值