平民程序 - linghuye's blog

天下风云出我辈,一入江湖岁月催。皇图霸业谈笑中,不胜人生一场醉。提剑跨骑挥鬼雨,白骨如山鸟惊飞。尘事如潮人如水,只笑江湖几人回。

随笔 - 221, 文章 - 0, 评论 - 680, 引用 - 0
数据加载中……

Texture Maping

This texture map is used for Rayne's head. One single texture map goes all the way around one
half of her head, from her nose to the middle of the back of her head. The artist has purposefully
designed the texture so that it can be "wrapped" around the model. The other half of her head is
mapped using the same texture, only it is mirrored for the other half.
Notice that the texture doesn't have to wrap "continuously" around the geometry in one piece.
Since each triangle can be mapped independently, different areas of the texture may be mapped
onto different portions of the model arbitrarily. For example, the "teeth" objects that you see in the
corners of the texture map are just that; Rayne has fangs, which can be seen when she opens her
mouth. Of course, if a "continuous" mapping is not used, the vertices will have to be duplicated at
the texture "seams" if the texture mapping coordinates are stored at the vertex level. (They usually
are.)
Notice that we have chosen to place the origin of texture mapping space in the upper left-hand
coordinate, which mimics the way the texture is accessed in hardware. More "academic" literature
places the origin in the lower left-hand coordinate.
As we have mentioned, each vertex is assigned a set of u,v coordinates in the texture map. In
this way, the texture is "pinned down" to the surface of the mesh. To render a pixel from the middle
of a triangle, we compute interpolated u,v mapping coordinates corresponding to the pixel (similar
to Gouraud shading) and then fetch the textel at these u,v coordinates.

posted on 2005-08-13 17:26 linghuye 阅读(341) 评论(0)  编辑 收藏 引用 所属分类: 3D图形学研究

只有注册用户登录后才能发表评论。