Sponsored Links
-->

Thursday, December 28, 2017

3ds Max UV Mapping Fundamentals | Pluralsight
src: img.pluralsight.com

UV mapping is the 3D modeling process of projecting a 2D image to a 3D model's surface for texture mapping.


Video UV mapping



UV mapping

This process projects a texture map onto a 3D object. The letters "U" and "V" denote the axes of the 2D texture because "X", "Y" and "Z" are already used to denote the axes of the 3D object in model space.

UV texturing permits polygons that make up a 3D object to be painted with color (and other surface attributes) from an ordinary image. The image is called a UV texture map. The UV mapping process involves assigning pixels in the image to surface mappings on the polygon, usually done by "programmatically" copying a triangular piece of the image map and pasting it onto a triangle on the object. UV is an alternative to projection mapping (e.g. using any pair of the model's X,Y,Z coordinates, or any transformation of the position); it only maps into a texture space rather than into the geometric space of the object. But the rendering computation uses the UV texture coordinates to determine how to paint the three-dimensional surface.


Maps UV mapping



Application techniques

In the example to the right, a sphere is given a checkered texture in two ways. On the left, without UV mapping, the sphere is carved out of three-dimensional checkers tiling Euclidean space. With UV mapping, the checkers tile the two-dimensional UV space, and points on the sphere map to this space according to their latitude and longitude.

UV unwrapping

When a model is created as a polygon mesh using a 3D modeler, UV coordinates (also known as texture coordinates) can be generated for each vertex in the mesh. One way is for the 3D modeler to unfold the triangle mesh at the seams, automatically laying out the triangles on a flat page. If the mesh is a UV sphere, for example, the modeler might transform it into an equirectangular projection. Once the model is unwrapped, the artist can paint a texture on each triangle individually, using the unwrapped mesh as a template. When the scene is rendered, each triangle will map to the appropriate texture from the "decal sheet".

A UV map can either be generated automatically by the software application, made manually by the artist, or some combination of both. Often a UV map will be generated, and then the artist will adjust and optimize it to minimize seams and overlaps. If the model is symmetric, the artist might overlap opposite triangles to allow painting both sides simultaneously.

UV coordinates are optionally applied per face. This means a shared spatial vertex position can have different UV coordinates for each of its triangles, so adjacent triangles can be cut apart and positioned on different areas of the texture map.

The UV mapping process at its simplest requires three steps: unwrapping the mesh, creating the texture, and applying the texture.

UV mapping may use repeating textures, or an injective 'unique' mapping as a prerequisite for baking.


UDIM UV mapping | fxguide
src: www.fxguide.com


Finding UV on a sphere

For any point P {\displaystyle P} on the sphere, calculate d ^ {\displaystyle {\hat {d}}} , that being the unit vector from P {\displaystyle P} to the sphere's origin.

Assuming that the sphere's poles are aligned with the Y axis, UV coordinates in the range [ 0 , 1 ] {\displaystyle [0,1]} can then be calculated as follows:

u = 0.5 + arctan 2 ( d z , d x ) 2 ? {\displaystyle u=0.5+{\frac {\arctan 2(d_{z},d_{x})}{2\pi }}}

v = 0.5 - arcsin ( d y ) ? {\displaystyle v=0.5-{\frac {\arcsin(d_{y})}{\pi }}}


Blender 2.7 UV Mapping 1 of 4 - YouTube
src: i.ytimg.com


See also

  • Cartographic projection
  • Least squares conformal map
  • Mesh parameterization
  • NURBS
  • Polygon mesh
  • Sculpted prim
  • Texture mapping
  • UVW mapping
  • Lightmap
  • Digital sculpting



Tutorial: UV Mapping Coffee Mug - YouTube
src: i.ytimg.com


References


UV Mapping in SketchUp using SketchUV and Roadkill - YouTube
src: i.ytimg.com


External links

  • LSCM Mapping image with Blender
  • Blender UV Mapping Tutorial with Blender
  • Rare practical example of UV mapping from a blog (not related to a specific product such as Maya or Blender).

Source of article : Wikipedia