<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE html
  PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN" "http://www.w3.org/TR/MathML2/dtd/xhtml-math11-f.dtd">
<html
	xmlns="http://www.w3.org/1999/xhtml"
	xmlns:mml="http://www.w3.org/1998/Math/MathML"
><head><title>gluUnProject</title><link rel="stylesheet" href="style.css" type="text/css"/><meta name="generator" content="DocBook XSL Stylesheets V1.59.1"/><link rel="home" href="index.xml" title="PyOpenGL 2.0.1.09 Man Pages"/><link rel="up" href="reference-GLU.xml" title="GLU"/><link rel="previous" href="gluTessVertex.3G.xml" title="gluTessVertex"/><link rel="next" href="gluUnProject4.3G.xml" title="gluUnProject4"/></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">gluUnProject</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="gluTessVertex.3G.xml">Prev</a> </td><th width="60%" align="center">GLU</th><td width="20%" align="right"> <a accesskey="n" href="gluUnProject4.3G.xml">Next</a></td></tr></table><hr/></div><div class="refentry" lang="en"><a name="gluUnProject.3G"/><div class="titlepage"/><div class="refnamediv"><a name="gluUnProject.3G-name"/><h2>Name</h2><p>gluUnProject &#8212; map window coordinates to object coordinates</p></div><div class="refsynopsisdiv"><a name="gluUnProject.3G-c_spec"/><h2>C Specification</h2><table class="funcprototype" border="0" cellpadding="0" cellspacing="0"><tr><td valign="top"><code>GLint <tt>gluUnProject</tt></code></td><td valign="top"><code>(</code></td><td valign="top"><code>GLdouble <i><tt>winX</tt></i>, GLdouble <i><tt>winY</tt></i>, GLdouble <i><tt>winZ</tt></i>, const GLdouble *<i><tt>model</tt></i>, const GLdouble *<i><tt>proj</tt></i>, const GLint *<i><tt>view</tt></i>, GLdouble* <i><tt>objX</tt></i>, GLdouble* <i><tt>objY</tt></i>, GLdouble* <i><tt>objZ</tt></i>);</code></td></tr></table></div><div class="refsynopsisdiv"><a name="gluUnProject.3G-python_spec"/><h2>Python Specification</h2><table class="funcprototype" border="0" cellpadding="0" cellspacing="0"><tr><td valign="top"><code><tt>gluUnProject</tt></code></td><td valign="top"><code>(</code></td><td valign="top"><code><i><tt>winX</tt></i>, <i><tt>winY</tt></i>, <i><tt>winZ</tt></i>, <i><tt>model</tt></i> = <tt>None</tt>, <i><tt>proj</tt></i> = <tt>None</tt>, <i><tt>view</tt></i> = <tt>None</tt>) &#8594; (<i><tt>objX</tt></i>,
				<i><tt>objY</tt></i>,
				<i><tt>objZ</tt></i>)</code></td></tr></table></div><div class="refsect1" lang="en"><a name="gluUnProject.3G-parameters"/><h2>Parameters</h2><div class="variablelist"><dl><dt><span class="term"><i><tt>winX</tt></i>, <i><tt>winY</tt></i>, <i><tt>winZ</tt></i></span></dt><dd>
						Specify the window coordinates to be mapped.
					</dd><dt><span class="term"><i><tt>model</tt></i></span></dt><dd>
						Specifies the modelview matrix (as from a <a href="glGet.3G.xml"><tt>glGetDoublev</tt></a> call).
					</dd><dt><span class="term"><i><tt>proj</tt></i></span></dt><dd>
						Specifies the projection matrix (as from a <a href="glGet.3G.xml"><tt>glGetDoublev</tt></a> call).
					</dd><dt><span class="term"><i><tt>view</tt></i></span></dt><dd>
						Specifies the viewport (as from a <a href="glGet.3G.xml"><tt>glGetIntegerv</tt></a> call).
					</dd><dt><span class="term"><i><tt>objX</tt></i>, <i><tt>objY</tt></i>, <i><tt>objZ</tt></i></span></dt><dd>
						Returns the computed object coordinates.
					</dd></dl></div></div><div class="refsect1" lang="en"><a name="gluUnProject.3G-description"/><h2>Description</h2><p>
			<tt>gluUnProject</tt> maps the specified window coordinates into object coordinates using
			<i><tt>model</tt></i>, <i><tt>proj</tt></i>, and <i><tt>view</tt></i>. The result is stored in
			<i><tt>objX</tt></i>, <i><tt>objY</tt></i>, and <i><tt>objZ</tt></i>. A return value of
			<tt>GL_TRUE</tt> indicates success; a return value of <tt>GL_FALSE</tt> indicates failure.
		</p><p>
			To compute the coordinates (<i><tt>objX</tt></i>, <i><tt>objY</tt></i>, and <i><tt>objZ</tt></i>),
			<tt>gluUnProject</tt> multiplies the normalized device coordinates by the inverse of
			<i><tt>model</tt></i>*<i><tt>proj</tt></i> as follows:
		</p><p>
			</p><div class="informalequation"><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" mode="display" overflow="scroll">
					<mml:mrow>
						<mml:mrow>
							<mml:mo>(</mml:mo>
							<mml:mtable columnalign="center">
								<mml:mtr>
									<mml:mtd>
										<mml:mi>objX</mml:mi>
									</mml:mtd>
								</mml:mtr>
								<mml:mtr>
									<mml:mtd>
										<mml:mi>objY</mml:mi>
									</mml:mtd>
								</mml:mtr>
								<mml:mtr>
									<mml:mtd>
										<mml:mi>objZ</mml:mi>
									</mml:mtd>
								</mml:mtr>
								<mml:mtr>
									<mml:mtd>
										<mml:mi>W</mml:mi>
									</mml:mtd>
								</mml:mtr>
							</mml:mtable>
							<mml:mo>)</mml:mo>
						</mml:mrow>
						<mml:mo>=</mml:mo>
						<mml:mi>INV</mml:mi>
						<mml:mo>(</mml:mo>
						<mml:mi>P</mml:mi>
						<mml:mi>M</mml:mi>
						<mml:mo>)</mml:mo>
						<mml:mrow>
							<mml:mo>(</mml:mo>
							<mml:mtable columnalign="center">
								<mml:mtr>
									<mml:mtd>
										<mml:mrow>
											<mml:mfrac>
												<mml:mrow>
													<mml:mn>2</mml:mn>
													<mml:mo>(</mml:mo>
													<mml:mi>winX</mml:mi>
													<mml:mo>-</mml:mo>
													<mml:mi>view</mml:mi>
													<mml:mo>[</mml:mo>
													<mml:mn>0</mml:mn>
													<mml:mo>]</mml:mo>
													<mml:mo>)</mml:mo>
												</mml:mrow>
												<mml:mrow>
													<mml:mi>view</mml:mi>
													<mml:mo>[</mml:mo>
													<mml:mn>2</mml:mn>
													<mml:mo>]</mml:mo>
												</mml:mrow>
											</mml:mfrac>
											<mml:mo>-</mml:mo>
											<mml:mn>1</mml:mn>
										</mml:mrow>
									</mml:mtd>
								</mml:mtr>
								<mml:mtr>
									<mml:mtd>
										<mml:mrow>
											<mml:mfrac>
												<mml:mrow>
													<mml:mn>2</mml:mn>
													<mml:mo>(</mml:mo>
													<mml:mi>winY</mml:mi>
													<mml:mo>-</mml:mo>
													<mml:mi>view</mml:mi>
													<mml:mo>[</mml:mo>
													<mml:mn>1</mml:mn>
													<mml:mo>]</mml:mo>
													<mml:mo>)</mml:mo>
												</mml:mrow>
												<mml:mrow>
													<mml:mi>view</mml:mi>
													<mml:mo>[</mml:mo>
													<mml:mn>3</mml:mn>
													<mml:mo>]</mml:mo>
												</mml:mrow>
											</mml:mfrac>
											<mml:mo>-</mml:mo>
											<mml:mn>1</mml:mn>
										</mml:mrow>
									</mml:mtd>
								</mml:mtr>
								<mml:mtr>
									<mml:mtd>
										<mml:mrow>
											<mml:mn>2</mml:mn>
											<mml:mo>(</mml:mo>
											<mml:mi>winZ</mml:mi>
											<mml:mo>)</mml:mo>
											<mml:mo>-</mml:mo>
											<mml:mn>1</mml:mn>
										</mml:mrow>
									</mml:mtd>
								</mml:mtr>
								<mml:mtr>
									<mml:mtd>
										<mml:mn>1</mml:mn>
									</mml:mtd>
								</mml:mtr>
							</mml:mtable>
							<mml:mo>)</mml:mo>
						</mml:mrow>
					</mml:mrow>
				</mml:math></div><p><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
					<mml:mrow>
						<mml:mi>INV</mml:mi>
						<mml:mo>(</mml:mo>
						<mml:mo>)</mml:mo>
					</mml:mrow>
				</mml:math> denotes matrix inversion. W is an unused variable, included for consistent matrix notation.
		</p></div><div class="refsect1" lang="en"><a name="gluUnProject.3G-see_also"/><h2>See Also</h2><p>
			<span class="simplelist"><a href="glGet.3G.xml">glGet</a>, <a href="gluProject.3G.xml">gluProject</a></span>
		</p></div></div><div class="navfooter"><hr/><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="gluTessVertex.3G.xml">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="reference-GLU.xml">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="gluUnProject4.3G.xml">Next</a></td></tr><tr><td width="40%" align="left" valign="top">gluTessVertex </td><td width="20%" align="center"><a accesskey="h" href="index.xml">Home</a></td><td width="40%" align="right" valign="top"> gluUnProject4</td></tr></table></div></body></html>