zoukankan      html  css  js  c++  java
  • 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

    欢迎大家扫描下面二维码成为我的客户,为你服务和上云

  • 相关阅读:
    ETL的两种架构(ETL架构和ELT架构)
    SQL 优化通用方法
    数据建模
    Python Pandas Merge, join and concatenate
    Python Pandas -- Panel
    win-msys2安装使用配置
    BeyondCompare4过期解决办法
    Git本地仓库推送到别的仓库
    IDEA调试可执行JAR包
    Oracle常见问题排查
  • 原文地址:https://www.cnblogs.com/shanyou/p/732710.html
Copyright © 2011-2022 走看看