<?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%2FRefImgCameraViewOrthographic</id>
	<title>User:Le Forgeron/vault/RefImgCameraViewOrthographic - 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%2FRefImgCameraViewOrthographic"/>
	<link rel="alternate" type="text/html" href="https://wiki.povray.org/content?title=User:Le_Forgeron/vault/RefImgCameraViewOrthographic&amp;action=history"/>
	<updated>2026-04-04T06:34:14Z</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/RefImgCameraViewOrthographic&amp;diff=4892&amp;oldid=prev</id>
		<title>Le Forgeron: Created page with &quot;File:RefImgCameraViewOrthographic.png  &lt;source lang=&quot;pov&quot;&gt; #version 3.7; global_settings {assumed_gamma 1 }  camera { orthographic location -(image_height+image_width)*z d...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.povray.org/content?title=User:Le_Forgeron/vault/RefImgCameraViewOrthographic&amp;diff=4892&amp;oldid=prev"/>
		<updated>2011-12-08T19:11:17Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;&lt;a href=&quot;/content/File:RefImgCameraViewOrthographic.png&quot; title=&quot;File:RefImgCameraViewOrthographic.png&quot;&gt;File:RefImgCameraViewOrthographic.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 d...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;[[File:RefImgCameraViewOrthographic.png]]&lt;br /&gt;
&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&amp;gt;;&lt;br /&gt;
#declare Right = &amp;lt;image_width/9,0,0&amp;gt;;&lt;br /&gt;
#declare Up = &amp;lt;0,image_height/6,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;
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;
#macro Picture(Right,Up,Location,i)&lt;br /&gt;
box { (-Right-Up)+Location*(1-i), (Right+Up)+Location*(1-i) texture { pigment { colour rgbft 0.5 } } }&lt;br /&gt;
cylinder { (-Right-Up)+Location*(1-i), (Right-Up)+Location*(1-i), Line_size }&lt;br /&gt;
cylinder { (-Right+Up)+Location*(1-i), (Right+Up)+Location*(1-i), Line_size }&lt;br /&gt;
cylinder { (Right+Up)+Location*(1-i), (Right-Up)+Location*(1-i), Line_size }&lt;br /&gt;
cylinder { (-Right+Up)+Location*(1-i), (-Right-Up)+Location*(1-i), Line_size }&lt;br /&gt;
#end&lt;br /&gt;
#for(i,0,1,1/4)&lt;br /&gt;
Picture(Right,Up,Location,i)&lt;br /&gt;
#end&lt;br /&gt;
&lt;br /&gt;
cylinder { Location, Right, Line_size texture { pigment { colour Red } } }&lt;br /&gt;
cylinder { Location, -Right, Line_size texture { pigment { colour Red } } }&lt;br /&gt;
Label(&amp;quot;angle&amp;quot;, Location+Vertical_up_space*2 ,Red)&lt;br /&gt;
&lt;br /&gt;
cylinder { Location+Up+Right, Up+Right, Line_size texture { pigment { colour Blue } }}&lt;br /&gt;
cylinder { Location-Up+Right, -Up+Right, Line_size texture { pigment { colour Blue } }}&lt;br /&gt;
cylinder { Location-Up-Right, -Up-Right, Line_size texture { pigment { colour Blue } }}&lt;br /&gt;
cylinder { Location+Up-Right, Up-Right, Line_size texture { pigment { colour Blue } }}&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+Right),0 translate Location texture { pigment { colour rgbt 1 } } }&lt;br /&gt;
plane { vcross(-Up,Location-Right),0 translate Location texture { pigment { colour rgbt 1 } } }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
Small_Label(&amp;quot;+1/2&amp;quot;,Right, Black)&lt;br /&gt;
Small_Label(&amp;quot;-1/2&amp;quot;,-Right, Black)&lt;br /&gt;
Small_Label(&amp;quot;+1/2&amp;quot;,Up, Black)&lt;br /&gt;
Small_Label(&amp;quot;-1/2&amp;quot;,-Up, Black)&lt;br /&gt;
&lt;br /&gt;
sphere { Location+Up+Right, Point_size }&lt;br /&gt;
sphere { Location+Up-Right, Point_size }&lt;br /&gt;
sphere { Location-Up-Right, Point_size }&lt;br /&gt;
sphere { Location-Up+Right, Point_size }&lt;br /&gt;
Ray ( Location*2/5+Up+Right, Look_at )&lt;br /&gt;
Ray ( Location*2/5+Up-Right, Look_at )&lt;br /&gt;
Ray ( Location*2/5-Up-Right, Look_at )&lt;br /&gt;
Ray ( Location*2/5-Up+Right, Look_at )&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>