plik


2.10.2 Matrices Next: 2.10.3 Normal Transformation Up: 2.10 Coordinate Transformations Previous: 2.10.1 Controlling the Viewport 2.10.2 Matrices   The projection matrix and model-view matrix are set and modified with a variety of commands. The affected matrix is determined by the current matrix mode. The current matrix mode is set with void MatrixMode ( enum mode ) ; which takes one of the three pre-defined constants TEXTURE, MODELVIEW, or PROJECTION as the argument value. TEXTURE is described later. If the current matrix mode is MODELVIEW, then matrix operations apply to the model-view matrix; if PROJECTION, then they apply to the projection matrix. The two basic commands for affecting the current matrix are void LoadMatrix[fd] ( T m[16] ) ; void MultMatrix[fd] ( T m[16] ) ; LoadMatrix  takes a pointer to a matrix stored in column-major order as 16 consecutive floating-point values, i.e. as (This differs from the standard row-major C ordering for matrix elements. If the standard ordering is used, all of the subsequent transformation equations are transposed, and the columns representing vectors become rows.) The specified matrix replaces the current matrix with the one pointed to. MultMatrix  takes the same type argument as LoadMatrix , but multiplies the current matrix by the one pointed to and replaces the current matrix with the product. If C is the current matrix and M is the matrix pointed to by MultMatrix 's argument, then the resulting current matrix, , is The command void LoadIdentity ( void ) ; effectively calls LoadMatrix  with the identity matrix: There are a variety of other commands that manipulate matrices. Rotate , Translate , Scale , Frustum , and Ortho  manipulate the current matrix. Each computes a matrix and then invokes MultMatrix  with this matrix. In the case of void Rotate[fd] ( T , T x, T y, T z ) ; gives an angle of rotation in degrees; the coordinates of a vector are given by . The computed matrix is a counter-clockwise rotation about the line through the origin with the specified axis when that axis is pointing up (i.e. the right-hand rule determines the sense of the rotation angle). The matrix is thus Let . If then The arguments to void Translate[fd] ( T x, T y, T z ) ; give the coordinates of a translation vector as . The resulting matrix is a translation by the specified vector: void Scale[fd] ( T x, T y, T z ) ; produces a general scaling along the x-, y-, and z- axes. The corresponding matrix is For void Frustum ( double l, double r, double b, double t, double n, double f ) ; the coordinates and specify the points on the near clipping plane that are mapped to the lower-left and upper-right corners of the window, respectively (assuming that the eye is located at ). gives the distance from the eye to the far clipping plane. If either or is less than or equal to zero, is equal to , is equal to , or is equal to , the error INVALID_VALUE results. The corresponding matrix is void Ortho ( double l, double r, double b, double t, double n, double f ) ; describes a matrix that produces parallel projection. and specify the points on the near clipping plane that are mapped to the lower-left and upper-right corners of the window, respectively. f gives the distance from the eye to the far clipping plane. If is equal to , is equal to , or is equal to , the error INVALID_VALUE results. The corresponding matrix is There is another matrix that is applied to texture coordinates. This matrix is applied as where the left matrix is the current texture matrix. The matrix is applied to the coordinates resulting from texture coordinate generation (which may simply be the current texture coordinates), and the resulting transformed coordinates become the texture coordinates associated with a vertex. Setting the matrix mode to TEXTURE causes the already described matrix operations to apply to the texture matrix. There is a stack of matrices for each of the matrix modes. For MODELVIEW mode, the stack depth is at least 32 (that is, there is a stack of at least 32 model-view matrices). For the other modes, the depth is at least 2. The current matrix in any mode is the matrix on the top of the stack for that mode. void PushMatrix ( void ) ; pushes the stack down by one, duplicating the current matrix in both the top of the stack and the entry below it. void PopMatrix ( void ) ; pops the top entry off of the stack, replacing the current matrix with the matrix that was the second entry in the stack. The pushing or popping takes place on the stack corresponding to the current matrix mode. Popping a matrix off a stack with only one entry generates the error STACK_UNDERFLOW; pushing a matrix onto a full stack generates STACK_OVERFLOW. The state required to implement transformations consists of a three-valued integer indicating the current matrix mode, a stack of at least two matrices for each of PROJECTION and TEXTURE with associated stack pointers, and a stack of at least 32 matrices with an associated stack pointer for MODELVIEW. Initially, there is only one matrix on each stack, and all matrices are set to the identity. The initial matrix mode is MODELVIEW. Next: 2.10.3 Normal Transformation Up: 2.10 Coordinate Transformations Previous: 2.10.1 Controlling the Viewport David Blythe Sat Mar 29 02:23:21 PST 1997

Wyszukiwarka

Podobne podstrony:
node257 6MKJ7DIZ7SQ5RNWQAR7JJYG2SCCE2WHEDKRRUZY
node250 IW4SVYVOQ6VDOKASRPAER7MOS3QMPARFNOXA2NY
node25 A6EBBUA6Q4CP2CMH4DNVFPFXQ2GQJWUFVGTBZXI
node252
node254 PEDKRMS4SZIIYFBVPSWK4Q4WKJQ2773SX645QMI
node25
node25
node25 1
node256 V6HZIESMYR2V25XEUAYFUAJ4DZXSLLVX74JGXCA
node253 YMLEWGBRCTRBJ33F2MKTMYWJIRHEUIBMCKQ73CA
node253 YMLEWGBRCTRBJ33F2MKTMYWJIRHEUIBMCKQ73CA
node25 RSWVRRTCMUVKMPATT2BAQH3WFDQ5C2BE5IAHBNI
node258 GILRTW6M52S7UY5GIDZMUQP7WRX53J6LD7USNQI
node252 E3PQHQPEHUWOTZYRUSEWMD4DIHVMGYUNRLPCSHI
node25
node259 BPF7WA32I34TG67SK2H2BA2V7D3XP7NI6MS7ZFQ
node251 33GYE233O3RSULSOGNHI2UFULD4PSTVTY5N3FII

więcej podobnych podstron