<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.povray.org/content?action=history&amp;feed=atom&amp;title=User%3ALe_Forgeron%2Fvault%2FRefImgCameraViewFisheye</id>
	<title>User:Le Forgeron/vault/RefImgCameraViewFisheye - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.povray.org/content?action=history&amp;feed=atom&amp;title=User%3ALe_Forgeron%2Fvault%2FRefImgCameraViewFisheye"/>
	<link rel="alternate" type="text/html" href="https://wiki.povray.org/content?title=User:Le_Forgeron/vault/RefImgCameraViewFisheye&amp;action=history"/>
	<updated>2026-04-04T06:27:34Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>https://wiki.povray.org/content?title=User:Le_Forgeron/vault/RefImgCameraViewFisheye&amp;diff=4888&amp;oldid=prev</id>
		<title>Le Forgeron: Created page with &quot;File:RefImgCameraViewFisheye.png &lt;source lang=&quot;pov&quot; &gt; #version 3.7; global_settings {assumed_gamma 1 }  camera { orthographic location -(image_height+image_width)*z direct...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.povray.org/content?title=User:Le_Forgeron/vault/RefImgCameraViewFisheye&amp;diff=4888&amp;oldid=prev"/>
		<updated>2011-12-08T19:07:39Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;&lt;a href=&quot;/content/File:RefImgCameraViewFisheye.png&quot; title=&quot;File:RefImgCameraViewFisheye.png&quot;&gt;File:RefImgCameraViewFisheye.png&lt;/a&gt; &amp;lt;source lang=&amp;quot;pov&amp;quot; &amp;gt; #version 3.7; global_settings {assumed_gamma 1 }  camera { orthographic location -(image_height+image_width)*z direct...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;[[File:RefImgCameraViewFisheye.png]]&lt;br /&gt;
&amp;lt;source lang=&amp;quot;pov&amp;quot; &amp;gt;&lt;br /&gt;
#version 3.7;&lt;br /&gt;
global_settings {assumed_gamma 1 }&lt;br /&gt;
&lt;br /&gt;
camera {&lt;br /&gt;
orthographic&lt;br /&gt;
location -(image_height+image_width)*z&lt;br /&gt;
direction z&lt;br /&gt;
up image_height*y&lt;br /&gt;
right image_width*x&lt;br /&gt;
rotate 45*x&lt;br /&gt;
rotate -45*y&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#include &amp;quot;colors.inc&amp;quot;&lt;br /&gt;
background { White }&lt;br /&gt;
#default { texture { finish { ambient 1 diffuse 0 } } }&lt;br /&gt;
&lt;br /&gt;
#declare Text_size = image_height / 21;&lt;br /&gt;
#declare Vertical_down_space = -Text_size*y*1.7; &lt;br /&gt;
#declare Vertical_up_space = Text_size*y*.6; &lt;br /&gt;
#declare Point_size = image_height / 82;&lt;br /&gt;
#declare Line_size = image_height / 482;&lt;br /&gt;
&lt;br /&gt;
#macro Label(te,pos,col)&lt;br /&gt;
text { ttf &amp;quot;ttf-dejavu/DejaVuSerif.ttf&amp;quot; te 0.1,0 &lt;br /&gt;
texture { pigment { colour col } }&lt;br /&gt;
translate -strlen(te)*0.23*x&lt;br /&gt;
rotate 45*x&lt;br /&gt;
rotate -45*y&lt;br /&gt;
scale Text_size translate pos }&lt;br /&gt;
#end&lt;br /&gt;
&lt;br /&gt;
#macro Small_Label(te,pos,col)&lt;br /&gt;
text { ttf &amp;quot;ttf-dejavu/DejaVuSerif.ttf&amp;quot; te 0.1,0 &lt;br /&gt;
texture { pigment { colour col } }&lt;br /&gt;
rotate 45*x&lt;br /&gt;
rotate -45*y&lt;br /&gt;
scale Text_size*2/3 translate pos }&lt;br /&gt;
#end&lt;br /&gt;
&lt;br /&gt;
#macro Arrow(pos,dir)&lt;br /&gt;
#local k=vlength(dir);&lt;br /&gt;
cone { pos,0,pos-Text_size*dir/k,Point_size }&lt;br /&gt;
#end&lt;br /&gt;
#macro Ray(pos,dir)&lt;br /&gt;
#local k=vlength(dir);&lt;br /&gt;
cone { pos,0,pos-Text_size*dir/k,Point_size texture { pigment { colour Blue } } }&lt;br /&gt;
#end&lt;br /&gt;
&lt;br /&gt;
#declare Location = &amp;lt;0,0,-0.6*image_height&amp;gt;;&lt;br /&gt;
#declare Look_at = &amp;lt;0,0,0.7*image_height&amp;gt;;&lt;br /&gt;
#declare Center = &amp;lt;0,0,-0.4*image_height&amp;gt;;&lt;br /&gt;
#declare Right = &amp;lt;image_width/4,0,0&amp;gt;;&lt;br /&gt;
#declare Up = &amp;lt;0,image_height/4,0&amp;gt;;&lt;br /&gt;
sphere { Location, Point_size }&lt;br /&gt;
Label(&amp;quot;location&amp;quot;,Location+Vertical_down_space, Black)&lt;br /&gt;
&lt;br /&gt;
sphere { Look_at, Point_size }&lt;br /&gt;
Label(&amp;quot;look_at&amp;quot;,Look_at+Vertical_up_space, Black)&lt;br /&gt;
&lt;br /&gt;
cylinder { Location, Center , Line_size }&lt;br /&gt;
cylinder { Center, Look_at , Line_size texture { pigment { checker colour Black, colour White scale Text_size } } }&lt;br /&gt;
Arrow(Center,Center-Location)&lt;br /&gt;
Label(&amp;quot;direction&amp;quot;, Center+Vertical_up_space, Black )&lt;br /&gt;
&lt;br /&gt;
cylinder { -Right*2, 2*Right, Line_size }&lt;br /&gt;
Label(&amp;quot;right&amp;quot;,Right*2+Vertical_down_space, Black)&lt;br /&gt;
Arrow(Right*2,Right//-Center&lt;br /&gt;
)&lt;br /&gt;
&lt;br /&gt;
cylinder { -Up*2, 2*Up, Line_size }&lt;br /&gt;
Label(&amp;quot;up&amp;quot;,Up*2+Vertical_up_space, Black)&lt;br /&gt;
Arrow(Up*2,Up //-Center&lt;br /&gt;
)&lt;br /&gt;
#include &amp;quot;finish.inc&amp;quot;&lt;br /&gt;
#macro Picture(Right,Up,Location,i)&lt;br /&gt;
#local rc=vlength(Location-Center);&lt;br /&gt;
#local rr=vlength(Right);&lt;br /&gt;
#local ra=sqrt(rr*rr+rc*rc);&lt;br /&gt;
intersection {&lt;br /&gt;
sphere { Location, i*(ra)  texture { pigment { colour rgbft 0.5 }  } }&lt;br /&gt;
cone { Location, 0 , Center*2-Location, 2*rr texture { pigment { colour rgbft 1 } } }&lt;br /&gt;
}&lt;br /&gt;
disc { Location-(Location-Center)*i, (Location-Center), i*rr, i*rr-Line_size }&lt;br /&gt;
#end&lt;br /&gt;
#for(i,1/4,1,1/4)&lt;br /&gt;
Picture(Right,Up,Location,i)&lt;br /&gt;
#end&lt;br /&gt;
&lt;br /&gt;
cylinder { Location, Center+Right, Line_size texture { pigment { colour Red } } }&lt;br /&gt;
cylinder { Location, Center-Right, Line_size texture { pigment { colour Red } } }&lt;br /&gt;
Label(&amp;quot;angle&amp;quot;, Location+Vertical_up_space*6+Center-Location/3 ,Red)&lt;br /&gt;
/*&lt;br /&gt;
cylinder { Location, Up+Right, Line_size }&lt;br /&gt;
cylinder { Location, -Up+Right, Line_size }&lt;br /&gt;
cylinder { Location, -Up-Right, Line_size }&lt;br /&gt;
cylinder { Location, Up-Right, Line_size }&lt;br /&gt;
&lt;br /&gt;
Ray ( Location*2/5+3/5*(Up+Right), Up+Right-Location)&lt;br /&gt;
Ray ( Location*2/5+3/5*(Up-Right), Up-Right-Location)&lt;br /&gt;
Ray ( Location*2/5+3/5*(-Up-Right), -Up-Right-Location)&lt;br /&gt;
Ray ( Location*2/5+3/5*(-Up+Right), -Up+Right-Location)&lt;br /&gt;
*/&lt;br /&gt;
intersection {&lt;br /&gt;
disc { Location, Up, vlength(Location)/6, vlength(Location)/6-Point_size texture { pigment { colour Red } } }&lt;br /&gt;
plane { vcross(Up,Location-Center+Right),0 translate Location texture { pigment { colour rgbt 1 } } }&lt;br /&gt;
plane { vcross(-Up,Location-Center-Right),0 translate Location texture { pigment { colour rgbt 1 } } }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Le Forgeron</name></author>
	</entry>
</feed>