首页 > 其他 > 详细

3D objects key rendering steps

时间:2014-03-15 23:30:21      阅读:603      评论:0      收藏:0      [点我收藏+]

Key steps of Rendering objects:

1 Create objects’ meshes, which we can use C++’s vector container to hold them. They just some points structures, and indices(represented by INT). Knowing exact what they are can demistify them.

2 Set up transformation matrixes: world matrix, view matrix, and projection matrix.

1) World matrix is identity matrix;

2) View matrix is caculated with three matrix, which can be done with one intrinsic function in DirectX:

// Build the view matrix.
	XMVECTOR pos    = XMVectorSet(x, y, z, 1.0f);
	XMVECTOR target = XMVectorZero();
	XMVECTOR up     = XMVectorSet(0.0f, 1.0f, 0.0f, 0.0f);

	XMMATRIX V = XMMatrixLookAtLH(pos, target, up);

 

3) Projection matrix, which is also called perspective projection matrix, can be calculated with one intrinsic function in DirectX, too:

XMMATRIX P = XMMatrixPerspectiveFovLH(0.25f*MathHelper::Pi, AspectRatio(), 1.0f, 1000.0f);

The math behind them can be very complicated. And sometime we may need to know them to perfrom some specific effects.

If we want to move our objects to some specific position and have specific orientation, we can use RST(rotation matrix, scaling matrix, and translation matrix) to transform our objects.  And we can multiply RST with world matrix, like this: W = W*RST; and then use the new W as other non-transformed objects.

Create buffers to hold, majorly, vertice and indices, we call them vertics buffer and indices buffer, and then we must bind the buffers to our drawing context, so that our DirectX know what to draw.


4 Remember to set up our vertex layout, which mean we have to specify how to arrange our vertices, is it a vertex with color, normal, or even with texture coordinate? We have to make every thing crystal clear, otherwise computer just never know how to do it.


5 We have to watch out what variabl we have to set up in Shaders. We can achive it by dividing it into three steps:

1) Create effect

2) Get techniques names and variables names

3) Set up these variables’ values with their names


The five step should be the key things tokeep in mind when we need to do rendering.

 

One more things to notices is:

The object(like a simple sphere) meshes we created by hand is essentially the same thing as modle meshes created by artisets. They record vertices’ position, normal, color and so on. One major different point between them would be molde meshes created by artisets with modle software, like 3DSMax, Maya and so forth, is more complicated than the simple shpere meshes we created, with more informations inside the modle files(like obj, x files).

3D objects key rendering steps,布布扣,bubuko.com

3D objects key rendering steps

原文:http://www.cnblogs.com/kenden23/p/3602425.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!