Mapping:What is a patch

From Custom Map Makers Wiki
Revision as of 15:17, 13 September 2011 by Rylius (talk | contribs)
Jump to: navigation, search
Hammer.png This page is a stub!
Please help us improve it.

Bezier Patches or "curves" are one type of Parametric Surface.

A parametric surface is a surface with a shape defined by a set of parameters, so the shape of the surface can change depending on the values of the parameters.

For Bezier Patches in Quake 3, the parameter is the LOD, or Level Of Detail.

Patches in Quake 3 are rendered with triangles, so the curves must be 'tessellated' (subdivided) into a number of triangles.

The higher the LOD value, the more the curve is subdivided, and the more triangles are created in tessellation.

The LOD can be set to change with the viewer's distance from the Patch, decreasing as they get further away.

In Q3 "r_lodCurveError" controls how much the LOD changes with distance, and "r_subdivisions" fixes the maximum LOD for all curves.

A Patch is stored as a 2-dimensional matrix of points.

A 2-dimensional matrix is a table containing sets of values arranged in rows and columns.

Each point is stored as two sets of values.

One set contains the XYZ coordinates defining the location of the point in the 3-dimensional volume of the map.

The other set contains the UV coordinates defining the location of that point on the 2-dimensional area of the Shader.

One Patch can only have one Shader, for the same reason one brush face can only have one Shader.