<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://fingswotidun.com/code/index.php?action=history&amp;feed=atom&amp;title=Recursion2</id>
		<title>Recursion2 - Revision history</title>
		<link rel="self" type="application/atom+xml" href="https://fingswotidun.com/code/index.php?action=history&amp;feed=atom&amp;title=Recursion2"/>
		<link rel="alternate" type="text/html" href="https://fingswotidun.com/code/index.php?title=Recursion2&amp;action=history"/>
		<updated>2026-08-13T12:45:29Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.24.2</generator>

	<entry>
		<id>https://fingswotidun.com/code/index.php?title=Recursion2&amp;diff=1314&amp;oldid=prev</id>
		<title>Lerc: Created page with &quot;&lt;edcode&gt;  function ourLine(start,end) {   drawLine(start.x,start.y,end.x,end.y); }  function middle(start,end) {    return {x : (start.x+end.x)/2, y: (start.y+end.y)/2}; }  fu...&quot;</title>
		<link rel="alternate" type="text/html" href="https://fingswotidun.com/code/index.php?title=Recursion2&amp;diff=1314&amp;oldid=prev"/>
				<updated>2015-08-13T09:29:01Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;&amp;lt;edcode&amp;gt;  function ourLine(start,end) {   drawLine(start.x,start.y,end.x,end.y); }  function middle(start,end) {    return {x : (start.x+end.x)/2, y: (start.y+end.y)/2}; }  fu...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;lt;edcode&amp;gt;&lt;br /&gt;
&lt;br /&gt;
function ourLine(start,end) {&lt;br /&gt;
  drawLine(start.x,start.y,end.x,end.y);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function middle(start,end) {&lt;br /&gt;
   return {x : (start.x+end.x)/2, y: (start.y+end.y)/2};&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function drawTriangle(a,b,c) {  &lt;br /&gt;
  if (distance(a,b) &amp;lt; 1) return;   //If the triangle is smaller than a dot, don't draw it&lt;br /&gt;
&lt;br /&gt;
  ourLine(a,b);&lt;br /&gt;
  ourLine(b,c);&lt;br /&gt;
  ourLine(c,a);&lt;br /&gt;
  &lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
var t1 = {x: 320,y:100};&lt;br /&gt;
var t2 = {x: 200,y:300};&lt;br /&gt;
var t3 = {x: 440,y:300};&lt;br /&gt;
&lt;br /&gt;
drawTriangle(t1,t2,t3);&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/edcode&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lerc</name></author>	</entry>

	</feed>