~ubuntu-branches/ubuntu/gutsy/vnc4/gutsy

« back to all changes in this revision

Viewing changes to unix/xc/extras/ogl-sample/main/doc/man/manglu/standard/perspective.gl

  • Committer: Bazaar Package Importer
  • Author(s): Ola Lundqvist
  • Date: 2006-05-15 20:35:17 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060515203517-l4lre1ku942mn26k
Tags: 4.1.1+X4.3.0-10
* Correction of critical security issue. Thanks to Martin Kogler
  <e9925248@student.tuwien.ac.at> that informed me about the issue,
  and provided the patch.
  This flaw was originally found by Steve Wiseman of intelliadmin.com.
* Applied patch from Javier Kohen <jkohen@users.sourceforge.net> that
  inform the user that only 8 first characters of the password will
  actually be used when typing more than 8 characters, closes:
  #355619.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
_C_ License Applicability. Except to the extent portions of this file are
 
2
_C_ made subject to an alternative license as permitted in the SGI Free
 
3
_C_ Software License B, Version 1.1 (the "License"), the contents of this
 
4
_C_ file are subject only to the provisions of the License. You may not use
 
5
_C_ this file except in compliance with the License. You may obtain a copy
 
6
_C_ of the License at Silicon Graphics, Inc., attn: Legal Services, 1600
 
7
_C_ Amphitheatre Parkway, Mountain View, CA 94043-1351, or at:
 
8
_C_ 
 
9
_C_ http://oss.sgi.com/projects/FreeB
 
10
_C_ 
 
11
_C_ Note that, as provided in the License, the Software is distributed on an
 
12
_C_ "AS IS" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS
 
13
_C_ DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND
 
14
_C_ CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
 
15
_C_ PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
 
16
_C_ 
 
17
_C_ Original Code. The Original Code is: OpenGL Sample Implementation,
 
18
_C_ Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
 
19
_C_ Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
 
20
_C_ Copyright in any portions created by third parties is as indicated
 
21
_C_ elsewhere herein. All Rights Reserved.
 
22
_C_ 
 
23
_C_ Additional Notice Provisions: The application programming interfaces
 
24
_C_ established by SGI in conjunction with the Original Code are The
 
25
_C_ OpenGL(R) Graphics System: A Specification (Version 1.2.1), released
 
26
_C_ April 1, 1999; The OpenGL(R) Graphics System Utility Library (Version
 
27
_C_ 1.3), released November 4, 1998; and OpenGL(R) Graphics with the X
 
28
_C_ Window System(R) (Version 1.3), released October 19, 1998. This software
 
29
_C_ was created using the OpenGL(R) version 1.2.1 Sample Implementation
 
30
_C_ published by SGI, but has not been independently verified as being
 
31
_C_ compliant with the OpenGL(R) version 1.2.1 Specification.
 
32
_C_
 
33
_C_ $Date$ $Revision$
 
34
_C_ The first character in this file must be an '_'!
 
35
_C_ Anything on a line after _C_ is ignored
 
36
_define(_filters,eqn)_C_
 
37
_C_      eqn is automatically replaced with neqn for nroff
 
38
_header(Perspective, set up a perspective projection matrix)
 
39
_names(Perspective)
 
40
.EQ
 
41
delim $$
 
42
.EN
 
43
.SH PARAMETERS
 
44
_phead(_param1)
 
45
Specifies the field of view angle, in degrees, in the \f2y\fP direction.
 
46
_phead(_param2)
 
47
Specifies the aspect ratio that determines
 
48
the field of view in the \f2x\fP direction.
 
49
The aspect ratio is the ratio of \f2x\fP (width) to \f2y\fP (height).
 
50
_phead(_param3)
 
51
Specifies the distance from the viewer to the near clipping plane
 
52
(always positive).
 
53
_phead(_param4)
 
54
Specifies the distance from the viewer to the far clipping plane
 
55
(always positive).
 
56
.SH DESCRIPTION
 
57
_cmnd specifies a viewing frustum into the world coordinate system.
 
58
In general, the aspect ratio in _cmnd should match the aspect ratio
 
59
of the associated viewport. For example, $ _eqnparam2 ~=~ 2.0 $ means 
 
60
the viewer's
 
61
angle of view is twice as wide in \f2x\fP as it is in \f2y\fP.
 
62
If the viewport is
 
63
twice as wide as it is tall, it displays the image without distortion.
 
64
.P
 
65
The matrix generated by _cmnd is multipled by the current matrix,
 
66
just as if _glcmnd(MultMatrix) were called with the generated matrix.
 
67
To load the perspective matrix onto the current matrix stack instead,
 
68
precede the call to _cmnd with a call to _glcmnd(LoadIdentity).
 
69
.P
 
70
Given \f2f\fP defined as follows:
 
71
.sp
 
72
.ce
 
73
.EQ
 
74
f  ~=~ cotangent"("{_eqnparam1 over 2}")"
 
75
.EN
 
76
.bp
 
77
The generated matrix is
 
78
.sp
 
79
.ce
 
80
.EQ
 
81
left ( ~~ down 130 { matrix {
 
82
   ccol { {f over _eqnparam2} above 0 above 0 above 0 }
 
83
   ccol { 0 above f above 0 above 0 }
 
84
   ccol { 0 above 0 above {{_eqnparam4 + _eqnparam3} over {_eqnparam3 - _eqnparam4}} above -1 }
 
85
   ccol { 0 above 0 above {{2 * _eqnparam4 * _eqnparam3} over {_eqnparam3 - _eqnparam4}} above 0}
 
86
}}  ~~~ right )
 
87
.EN
 
88
 
 
89
.SH NOTES
 
90
Depth buffer precision is affected by the values specified for
 
91
_param3 and _param4.
 
92
The greater the ratio of _param4 to _param3 is,
 
93
the less effective the depth buffer will be at distinguishing between
 
94
surfaces that are near each other.
 
95
If 
 
96
.sp
 
97
.ce
 
98
$r ~=~ _eqnparam4 over _eqnparam3$
 
99
.sp
 
100
.P
 
101
roughly $log sub 2 r$ bits of depth buffer precision are lost.
 
102
Because $r$ approaches infinity as _param3 approaches 0,
 
103
_param3 must never be set to 0.
 
104
.SH SEE ALSO
 
105
_glcmnd(Frustum), _glcmnd(LoadIdentity),
 
106
_glcmnd(MultMatrix), _cmnd(Ortho2D)