﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<?application progid="SMath Studio Desktop" version="0.98.6606.22069"?>
<regions xmlns="http://smath.info/schemas/worksheet/1.0">
  <settings dpi="96">
    <identity>
      <id>b49a9302-14af-4017-a65d-0142640dbd8c</id>
      <revision>174</revision>
    </identity>
    <calculation>
      <precision>4</precision>
      <exponentialThreshold>5</exponentialThreshold>
      <fractions>decimal</fractions>
    </calculation>
    <pageModel active="true" viewMode="0" printGrid="false" printAreas="true" simpleEqualsOnly="false" printBackgroundImages="true">
      <paper id="1" orientation="Portrait" width="850" height="1100" />
      <margins left="39" right="39" top="39" bottom="39" />
      <header alignment="Center" color="#a9a9a9">&amp;[DATE] &amp;[TIME] - &amp;[FILENAME]</header>
      <footer alignment="Center" color="#a9a9a9">&amp;[PAGENUM] / &amp;[COUNT]</footer>
      <backgrounds />
    </pageModel>
    <dependencies>
      <assembly name="SMath Studio Desktop" version="0.98.6606.22069" guid="a37cba83-b69c-4c71-9992-55ff666763bd" />
      <assembly name="Math Region" version="0.98.6606.22069" guid="02f1ab51-215b-466e-a74d-5d8b1cf85e8d" />
      <assembly name="Special Functions" version="1.11.6606.22071" guid="2814e667-4e12-48b1-8d51-194e480eabc5" />
      <assembly name="Text Region" version="1.10.6606.22071" guid="485d28c5-349a-48b6-93be-12a35a1c1e39" />
      <assembly name="Image Region" version="2.99.6527.16399" guid="63ddaef8-9a56-4ff6-938e-d590b638bf99" />
    </dependencies>
    <mode debug="true" />
  </settings>
  <region id="0" left="9" top="18" width="234" height="31" color="#804040" bgColor="#ffffff" fontSize="14">
    <text lang="eng">
      <p>Bresenham Algorithm</p>
    </text>
  </region>
  <region id="1" top="54" color="#000000" bgColor="#ffffff">
    <area collapsed="true">
      <title lang="eng">
        <p>Plot function</p>
      </title>
    </area>
    <region id="2" left="36" top="117" width="275" height="38" color="#000000" bgColor="#f0f0f0" fontSize="10">
      <math>
        <input>
          <e type="operand">X</e>
          <e type="operand">Y</e>
          <e type="function" args="2">¦Πxy</e>
          <e type="operand">X</e>
          <e type="operand">Y</e>
          <e type="operand">0</e>
          <e type="operand">0</e>
          <e type="operand">255</e>
          <e type="operand">1</e>
          <e type="operand">3</e>
          <e type="function" args="5">mat</e>
          <e type="function" args="1">transpose</e>
          <e type="function" args="3">¦Πxy</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="3" left="414" top="117" width="265" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
      <text lang="eng">
        <p>Blue as defalt foreground color</p>
      </text>
    </region>
    <region id="4" left="783" top="117" width="441" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
      <text lang="eng">
        <p>https://es.wikipedia.org/wiki/Algoritmo_de_Bresenham</p>
      </text>
    </region>
    <region id="5" left="783" top="144" width="756" height="856" color="#000000" bgColor="#ffffff" fontSize="10">
      <text lang="eng">
        <p>Funcion LineaBresenham( X1, Y1, X2, Y2)      // 0 - Distancias que se desplazan en cada eje      dY = (Y2 - Y1)      dX = (X2 - X1)          // 1 - Incrementos para las secciones con avance inclinado      Si (dY &gt;= 0) luego          IncYi = 1      Sino          dY = -dY          IncYi = -1      Fin si          Si (dX &gt;= 0) luego          IncXi = 1      Sino          dX = -dX          IncXi = -1      Fin si          // 2 - Incrementos para las secciones con avance recto:      Si (dX &gt;= dY) luego          IncYr = 0          IncXr = IncXi      Sino          IncXr = 0          IncYr = IncYi              // Cuando dy es mayor que dx, se intercambian, para reutilizar el mismo bucle.          // ver octantes blancos en la imagen encima del código          k = dX: dX = dY: dY = k      Fin si          // 3  - Inicializar valores (y de error).      X = X1: Y = Y1      avR = (2 * dY)      av = (avR - dX)      avI = (av - dX)          // 4  - Bucle para el trazado de las línea.      Hacer          DibujarPixel(X, Y, Color) // Como mínimo se dibujará siempre 1 píxel (punto).          Mensaje(av + " ") // (debug) para ver los valores de error global que van apareciendo.          Si (av &gt;= 0) luego              X = (X + IncXi)     // X aumenta en inclinado.              Y = (Y + IncYi)     // Y aumenta en inclinado.              av = (av + avI)     // Avance Inclinado          Sino              X = (X + IncXr)     // X aumenta en recto.              Y = (Y + IncYr)     // Y aumenta en recto.              av = (av + avR)     // Avance Recto          Fin si      Repetir hasta que (X = X2)</p>
      </text>
    </region>
    <region id="6" left="36" top="162" width="351" height="38" color="#000000" bgColor="#f0f0f0" fontSize="10">
      <math>
        <input>
          <e type="operand">X</e>
          <e type="operand">Y</e>
          <e type="operand">K</e>
          <e type="function" args="3">¦Πxy</e>
          <e type="operand">X</e>
          <e type="operand">Y</e>
          <e type="operand">K</e>
          <e type="operand">255</e>
          <e type="operand">255</e>
          <e type="operand">255</e>
          <e type="operand">1</e>
          <e type="operand">3</e>
          <e type="function" args="5">mat</e>
          <e type="function" args="1">transpose</e>
          <e type="function" args="4">¦Πxy</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="7" left="414" top="162" width="273" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
      <text lang="eng">
        <p>White as defalt background color</p>
      </text>
    </region>
    <region id="8" left="36" top="207" width="328" height="26" color="#000000" bgColor="#f0f0f0" fontSize="10">
      <math>
        <input>
          <e type="operand">X</e>
          <e type="operand">Y</e>
          <e type="operand">K</e>
          <e type="operand">BK</e>
          <e type="function" args="4">¦Πxy</e>
          <e type="operand">X</e>
          <e type="operand">Y</e>
          <e type="operand">K</e>
          <e type="operand">BK</e>
          <e type="operand">¦ΠP</e>
          <e type="function" args="5">¦Πxy</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="9" left="414" top="207" width="200" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
      <text lang="eng">
        <p>Default array of values</p>
      </text>
    </region>
    <region id="10" left="36" top="252" width="329" height="113" color="#000000" bgColor="#f0f0f0" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">x</e>
          <e type="operand">y</e>
          <e type="function" args="2">¦ΠBress</e>
          <e type="operand">x</e>
          <e type="operand">2</e>
          <e type="function" args="2">el</e>
          <e type="operand">x</e>
          <e type="operand">1</e>
          <e type="function" args="2">el</e>
          <e type="operator" args="2">-</e>
          <e type="function" args="1">abs</e>
          <e type="operand">y</e>
          <e type="operand">2</e>
          <e type="function" args="2">el</e>
          <e type="operand">y</e>
          <e type="operand">1</e>
          <e type="function" args="2">el</e>
          <e type="operator" args="2">-</e>
          <e type="function" args="1">abs</e>
          <e type="operator" args="2">&gt;</e>
          <e type="operand">x</e>
          <e type="operand">y</e>
          <e type="operand">1</e>
          <e type="operand">2</e>
          <e type="function" args="4">mat</e>
          <e type="operand">x</e>
          <e type="operand">y</e>
          <e type="function" args="2">¦ΠBressXY</e>
          <e type="operator" args="2">:</e>
          <e type="operand">y</e>
          <e type="operand">x</e>
          <e type="operand">1</e>
          <e type="operand">2</e>
          <e type="function" args="4">mat</e>
          <e type="operand">y</e>
          <e type="operand">x</e>
          <e type="function" args="2">¦ΠBressXY</e>
          <e type="operator" args="2">:</e>
          <e type="function" args="3">if</e>
          <e type="operand">x</e>
          <e type="operand">y</e>
          <e type="function" args="2">augment</e>
          <e type="function" args="1">eval</e>
          <e type="operand">2</e>
          <e type="operand">1</e>
          <e type="function" args="4">line</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="11" left="36" top="369" width="444" height="289" color="#000000" bgColor="#f0f0f0" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">x</e>
          <e type="operand">y</e>
          <e type="function" args="2">¦ΠBressXY</e>
          <e type="operand">dx</e>
          <e type="operand">x</e>
          <e type="operand">2</e>
          <e type="function" args="2">el</e>
          <e type="operand">x</e>
          <e type="operand">1</e>
          <e type="function" args="2">el</e>
          <e type="operator" args="2">-</e>
          <e type="operator" args="2">:</e>
          <e type="operand">dy</e>
          <e type="operand">y</e>
          <e type="operand">2</e>
          <e type="function" args="2">el</e>
          <e type="operand">y</e>
          <e type="operand">1</e>
          <e type="function" args="2">el</e>
          <e type="operator" args="2">-</e>
          <e type="operator" args="2">:</e>
          <e type="operand">1</e>
          <e type="operand">2</e>
          <e type="function" args="4">mat</e>
          <e type="operand">X</e>
          <e type="operand">x</e>
          <e type="operand">1</e>
          <e type="function" args="2">el</e>
          <e type="operator" args="2">:</e>
          <e type="operand">Y</e>
          <e type="operand">y</e>
          <e type="operand">1</e>
          <e type="function" args="2">el</e>
          <e type="operator" args="2">:</e>
          <e type="operand">δ</e>
          <e type="operand">2</e>
          <e type="operand">dy</e>
          <e type="function" args="1">abs</e>
          <e type="operator" args="2">*</e>
          <e type="operand">dx</e>
          <e type="function" args="1">abs</e>
          <e type="operator" args="2">-</e>
          <e type="operator" args="2">:</e>
          <e type="operand">1</e>
          <e type="operand">3</e>
          <e type="function" args="5">mat</e>
          <e type="operand">x</e>
          <e type="operand">1</e>
          <e type="function" args="2">el</e>
          <e type="operand">x</e>
          <e type="operand">2</e>
          <e type="function" args="2">el</e>
          <e type="operator" args="2">≠</e>
          <e type="operand">δ</e>
          <e type="operand">0</e>
          <e type="operator" args="2">≥</e>
          <e type="operand">y</e>
          <e type="operand">1</e>
          <e type="function" args="2">el</e>
          <e type="operand">y</e>
          <e type="operand">1</e>
          <e type="function" args="2">el</e>
          <e type="operand">dy</e>
          <e type="function" args="1">sign</e>
          <e type="operator" args="2">+</e>
          <e type="operator" args="2">:</e>
          <e type="operand">δ</e>
          <e type="operand">δ</e>
          <e type="operand">2</e>
          <e type="operand">dx</e>
          <e type="function" args="1">abs</e>
          <e type="operator" args="2">*</e>
          <e type="operator" args="2">-</e>
          <e type="operator" args="2">:</e>
          <e type="operand">2</e>
          <e type="operand">1</e>
          <e type="function" args="4">line</e>
          <e type="operand">0</e>
          <e type="function" args="3">if</e>
          <e type="operand">x</e>
          <e type="operand">1</e>
          <e type="function" args="2">el</e>
          <e type="operand">x</e>
          <e type="operand">1</e>
          <e type="function" args="2">el</e>
          <e type="operand">dx</e>
          <e type="function" args="1">sign</e>
          <e type="operator" args="2">+</e>
          <e type="operator" args="2">:</e>
          <e type="operand">δ</e>
          <e type="operand">δ</e>
          <e type="operand">2</e>
          <e type="operand">dy</e>
          <e type="function" args="1">abs</e>
          <e type="operator" args="2">*</e>
          <e type="operator" args="2">+</e>
          <e type="operator" args="2">:</e>
          <e type="operand">X</e>
          <e type="operand">X</e>
          <e type="operand">x</e>
          <e type="operand">1</e>
          <e type="function" args="2">el</e>
          <e type="function" args="2">stack</e>
          <e type="operator" args="2">:</e>
          <e type="operand">Y</e>
          <e type="operand">Y</e>
          <e type="operand">y</e>
          <e type="operand">1</e>
          <e type="function" args="2">el</e>
          <e type="function" args="2">stack</e>
          <e type="operator" args="2">:</e>
          <e type="operand">1</e>
          <e type="operand">2</e>
          <e type="function" args="4">mat</e>
          <e type="operand">4</e>
          <e type="operand">1</e>
          <e type="function" args="6">line</e>
          <e type="function" args="2">while</e>
          <e type="operand">X</e>
          <e type="operand">Y</e>
          <e type="operand">1</e>
          <e type="operand">2</e>
          <e type="function" args="4">mat</e>
          <e type="operand">4</e>
          <e type="operand">1</e>
          <e type="function" args="6">line</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="12" left="36" top="666" width="734" height="746" color="#000000" bgColor="#ffffff" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">X</e>
          <e type="operand">Y</e>
          <e type="operand">K</e>
          <e type="operand">BK</e>
          <e type="operand">Π</e>
          <e type="function" args="5">¦Πxy</e>
          <e type="operand">x.min</e>
          <e type="operand">x.max</e>
          <e type="operand">px</e>
          <e type="operand">ox</e>
          <e type="operand">tx</e>
          <e type="operand">ax</e>
          <e type="operand">τx</e>
          <e type="operand">y.min</e>
          <e type="operand">y.max</e>
          <e type="operand">py</e>
          <e type="operand">oy</e>
          <e type="operand">ty</e>
          <e type="operand">ay</e>
          <e type="operand">τy</e>
          <e type="operand">2</e>
          <e type="operand">7</e>
          <e type="function" args="16">mat</e>
          <e type="operand">Π</e>
          <e type="operator" args="2">:</e>
          <e type="operand">M</e>
          <e type="operand">py</e>
          <e type="operand">px</e>
          <e type="function" args="2">matrix</e>
          <e type="operator" args="2">:</e>
          <e type="operand">MR</e>
          <e type="operand">M</e>
          <e type="operand">BK</e>
          <e type="operand">1</e>
          <e type="function" args="2">el</e>
          <e type="operator" args="2">+</e>
          <e type="operator" args="2">:</e>
          <e type="operand">MG</e>
          <e type="operand">M</e>
          <e type="operand">BK</e>
          <e type="operand">2</e>
          <e type="function" args="2">el</e>
          <e type="operator" args="2">+</e>
          <e type="operator" args="2">:</e>
          <e type="operand">MB</e>
          <e type="operand">M</e>
          <e type="operand">BK</e>
          <e type="operand">3</e>
          <e type="function" args="2">el</e>
          <e type="operator" args="2">+</e>
          <e type="operator" args="2">:</e>
          <e type="operand">1</e>
          <e type="operand">4</e>
          <e type="function" args="6">mat</e>
          <e type="operand">X</e>
          <e type="function" args="1">Tx</e>
          <e type="operand">px</e>
          <e type="operand">ox</e>
          <e type="operator" args="2">-</e>
          <e type="operand">x.max</e>
          <e type="operand">x.min</e>
          <e type="operator" args="2">-</e>
          <e type="operator" args="2">/</e>
          <e type="operand">X</e>
          <e type="operand">x.min</e>
          <e type="operator" args="2">-</e>
          <e type="bracket">(</e>
          <e type="operator" args="2">*</e>
          <e type="operator" args="2">:</e>
          <e type="operand">Y</e>
          <e type="function" args="1">Ty</e>
          <e type="operand">py</e>
          <e type="operand">oy</e>
          <e type="operator" args="2">-</e>
          <e type="operand">y.max</e>
          <e type="operand">y.min</e>
          <e type="operator" args="2">-</e>
          <e type="operator" args="2">/</e>
          <e type="operand">Y</e>
          <e type="operand">y.min</e>
          <e type="operator" args="2">-</e>
          <e type="bracket">(</e>
          <e type="operator" args="2">*</e>
          <e type="operator" args="2">:</e>
          <e type="operand">x</e>
          <e type="function" args="1">T</e>
          <e type="operand">x</e>
          <e type="function" args="1">trunc</e>
          <e type="function" args="1">vectorize</e>
          <e type="operator" args="2">:</e>
          <e type="operand">1</e>
          <e type="operand">3</e>
          <e type="function" args="5">mat</e>
          <e type="operand">co</e>
          <e type="operand">0</e>
          <e type="function" args="1">Tx</e>
          <e type="function" args="1">T</e>
          <e type="operator" args="2">:</e>
          <e type="operand">ro</e>
          <e type="operand">0</e>
          <e type="function" args="1">Ty</e>
          <e type="function" args="1">T</e>
          <e type="operator" args="2">:</e>
          <e type="operand">αx</e>
          <e type="operand">1</e>
          <e type="operand">ax</e>
          <e type="operator" args="2">-</e>
          <e type="bracket">(</e>
          <e type="operand">px</e>
          <e type="operator" args="2">*</e>
          <e type="operator" args="2">:</e>
          <e type="operand">αy</e>
          <e type="operand">1</e>
          <e type="operand">ay</e>
          <e type="operator" args="2">-</e>
          <e type="bracket">(</e>
          <e type="operand">px</e>
          <e type="operator" args="2">*</e>
          <e type="operator" args="2">:</e>
          <e type="operand">1</e>
          <e type="operand">4</e>
          <e type="function" args="6">mat</e>
          <e type="operand">ax</e>
          <e type="operand">0</e>
          <e type="operand">1</e>
          <e type="function" args="3">ltle</e>
          <e type="bracket">(</e>
          <e type="operand">ro</e>
          <e type="operand">oy</e>
          <e type="operand">py</e>
          <e type="operand">oy</e>
          <e type="operator" args="2">-</e>
          <e type="function" args="3">ltlt</e>
          <e type="operator" args="2">&amp;</e>
          <e type="operand">c</e>
          <e type="operand">1</e>
          <e type="operand">αx</e>
          <e type="function" args="1">T</e>
          <e type="operator" args="2">+</e>
          <e type="bracket">(</e>
          <e type="operand">px</e>
          <e type="operand">ax</e>
          <e type="operand">αx</e>
          <e type="operator" args="2">*</e>
          <e type="function" args="1">T</e>
          <e type="operator" args="2">-</e>
          <e type="bracket">(</e>
          <e type="function" args="2">range</e>
          <e type="operand">MR</e>
          <e type="operand">py</e>
          <e type="operand">ro</e>
          <e type="operator" args="2">-</e>
          <e type="operand">c</e>
          <e type="function" args="3">el</e>
          <e type="operand">¦ΠAx</e>
          <e type="operand">1</e>
          <e type="function" args="2">el</e>
          <e type="operator" args="2">:</e>
          <e type="operand">MG</e>
          <e type="operand">py</e>
          <e type="operand">ro</e>
          <e type="operator" args="2">-</e>
          <e type="operand">c</e>
          <e type="function" args="3">el</e>
          <e type="operand">¦ΠAx</e>
          <e type="operand">2</e>
          <e type="function" args="2">el</e>
          <e type="operator" args="2">:</e>
          <e type="operand">MB</e>
          <e type="operand">py</e>
          <e type="operand">ro</e>
          <e type="operator" args="2">-</e>
          <e type="operand">c</e>
          <e type="function" args="3">el</e>
          <e type="operand">¦ΠAx</e>
          <e type="operand">3</e>
          <e type="function" args="2">el</e>
          <e type="operator" args="2">:</e>
          <e type="operand">1</e>
          <e type="operand">3</e>
          <e type="function" args="5">mat</e>
          <e type="function" args="3">for</e>
          <e type="operand">0</e>
          <e type="function" args="3">if</e>
          <e type="operand">ay</e>
          <e type="operand">0</e>
          <e type="operand">1</e>
          <e type="function" args="3">ltle</e>
          <e type="bracket">(</e>
          <e type="operand">co</e>
          <e type="operand">ox</e>
          <e type="operand">px</e>
          <e type="operand">ox</e>
          <e type="operator" args="2">-</e>
          <e type="function" args="3">ltlt</e>
          <e type="operator" args="2">&amp;</e>
          <e type="operand">r</e>
          <e type="operand">1</e>
          <e type="operand">αy</e>
          <e type="function" args="1">T</e>
          <e type="operator" args="2">+</e>
          <e type="bracket">(</e>
          <e type="operand">py</e>
          <e type="operand">ay</e>
          <e type="operand">αy</e>
          <e type="operator" args="2">*</e>
          <e type="function" args="1">T</e>
          <e type="operator" args="2">-</e>
          <e type="bracket">(</e>
          <e type="function" args="2">range</e>
          <e type="operand">MR</e>
          <e type="operand">r</e>
          <e type="operand">co</e>
          <e type="function" args="3">el</e>
          <e type="operand">¦ΠAy</e>
          <e type="operand">1</e>
          <e type="function" args="2">el</e>
          <e type="operator" args="2">:</e>
          <e type="operand">MG</e>
          <e type="operand">r</e>
          <e type="operand">co</e>
          <e type="function" args="3">el</e>
          <e type="operand">¦ΠAy</e>
          <e type="operand">2</e>
          <e type="function" args="2">el</e>
          <e type="operator" args="2">:</e>
          <e type="operand">MB</e>
          <e type="operand">r</e>
          <e type="operand">co</e>
          <e type="function" args="3">el</e>
          <e type="operand">¦ΠAy</e>
          <e type="operand">3</e>
          <e type="function" args="2">el</e>
          <e type="operator" args="2">:</e>
          <e type="operand">1</e>
          <e type="operand">3</e>
          <e type="function" args="5">mat</e>
          <e type="function" args="3">for</e>
          <e type="operand">0</e>
          <e type="function" args="3">if</e>
          <e type="operand">x</e>
          <e type="operand">X</e>
          <e type="function" args="1">Tx</e>
          <e type="function" args="1">eval</e>
          <e type="function" args="1">T</e>
          <e type="operator" args="2">:</e>
          <e type="operand">y</e>
          <e type="operand">Y</e>
          <e type="function" args="1">Ty</e>
          <e type="function" args="1">eval</e>
          <e type="function" args="1">T</e>
          <e type="operator" args="2">:</e>
          <e type="operand">1</e>
          <e type="operand">2</e>
          <e type="function" args="4">mat</e>
          <e type="operand">x</e>
          <e type="function" args="1">cols</e>
          <e type="operand">y</e>
          <e type="function" args="1">cols</e>
          <e type="operator" args="2">&lt;</e>
          <e type="operand">x</e>
          <e type="operand">x</e>
          <e type="operand">x</e>
          <e type="operand">1</e>
          <e type="function" args="2">col</e>
          <e type="function" args="2">augment</e>
          <e type="operator" args="2">:</e>
          <e type="function" args="2">while</e>
          <e type="operand">c</e>
          <e type="operand">1</e>
          <e type="operand">y</e>
          <e type="function" args="1">cols</e>
          <e type="function" args="2">range</e>
          <e type="operand">r</e>
          <e type="operand">2</e>
          <e type="operand">y</e>
          <e type="function" args="1">rows</e>
          <e type="function" args="2">range</e>
          <e type="operand">B</e>
          <e type="operand">x</e>
          <e type="operand">r</e>
          <e type="operand">1</e>
          <e type="operator" args="2">-</e>
          <e type="operand">c</e>
          <e type="function" args="3">el</e>
          <e type="operand">x</e>
          <e type="operand">r</e>
          <e type="operand">c</e>
          <e type="function" args="3">el</e>
          <e type="operand">2</e>
          <e type="operand">1</e>
          <e type="function" args="4">mat</e>
          <e type="operand">y</e>
          <e type="operand">r</e>
          <e type="operand">1</e>
          <e type="operator" args="2">-</e>
          <e type="operand">c</e>
          <e type="function" args="3">el</e>
          <e type="operand">y</e>
          <e type="operand">r</e>
          <e type="operand">c</e>
          <e type="function" args="3">el</e>
          <e type="operand">2</e>
          <e type="operand">1</e>
          <e type="function" args="4">mat</e>
          <e type="function" args="2">¦ΠBress</e>
          <e type="operator" args="2">:</e>
          <e type="operand">β</e>
          <e type="operand">1</e>
          <e type="operand">B</e>
          <e type="function" args="1">rows</e>
          <e type="function" args="2">range</e>
          <e type="operand">R</e>
          <e type="operand">B</e>
          <e type="operand">β</e>
          <e type="operand">2</e>
          <e type="function" args="3">el</e>
          <e type="operand">B</e>
          <e type="operand">β</e>
          <e type="operand">2</e>
          <e type="function" args="3">el</e>
          <e type="operand">ty</e>
          <e type="operator" args="2">+</e>
          <e type="operand">1</e>
          <e type="operator" args="2">-</e>
          <e type="bracket">(</e>
          <e type="function" args="2">range</e>
          <e type="operand">C</e>
          <e type="operand">B</e>
          <e type="operand">β</e>
          <e type="operand">1</e>
          <e type="function" args="3">el</e>
          <e type="operand">B</e>
          <e type="operand">β</e>
          <e type="operand">1</e>
          <e type="function" args="3">el</e>
          <e type="operand">tx</e>
          <e type="operator" args="2">+</e>
          <e type="operand">1</e>
          <e type="operator" args="2">-</e>
          <e type="bracket">(</e>
          <e type="function" args="2">range</e>
          <e type="operand">R</e>
          <e type="operand">oy</e>
          <e type="operand">py</e>
          <e type="operand">oy</e>
          <e type="operator" args="2">-</e>
          <e type="function" args="3">ltlt</e>
          <e type="bracket">(</e>
          <e type="operand">C</e>
          <e type="operand">ox</e>
          <e type="operand">px</e>
          <e type="operand">ox</e>
          <e type="operator" args="2">-</e>
          <e type="function" args="3">ltlt</e>
          <e type="bracket">(</e>
          <e type="operator" args="2">&amp;</e>
          <e type="operand">MR</e>
          <e type="operand">py</e>
          <e type="operand">R</e>
          <e type="operator" args="2">-</e>
          <e type="operand">C</e>
          <e type="function" args="3">el</e>
          <e type="operand">K</e>
          <e type="operand">1</e>
          <e type="function" args="2">el</e>
          <e type="operator" args="2">:</e>
          <e type="operand">MG</e>
          <e type="operand">py</e>
          <e type="operand">R</e>
          <e type="operator" args="2">-</e>
          <e type="operand">C</e>
          <e type="function" args="3">el</e>
          <e type="operand">K</e>
          <e type="operand">2</e>
          <e type="function" args="2">el</e>
          <e type="operator" args="2">:</e>
          <e type="operand">MB</e>
          <e type="operand">py</e>
          <e type="operand">R</e>
          <e type="operator" args="2">-</e>
          <e type="operand">C</e>
          <e type="function" args="3">el</e>
          <e type="operand">K</e>
          <e type="operand">3</e>
          <e type="function" args="2">el</e>
          <e type="operator" args="2">:</e>
          <e type="operand">1</e>
          <e type="operand">3</e>
          <e type="function" args="5">mat</e>
          <e type="operand">0</e>
          <e type="function" args="3">if</e>
          <e type="function" args="3">for</e>
          <e type="operand">1</e>
          <e type="operand">1</e>
          <e type="function" args="3">line</e>
          <e type="function" args="3">for</e>
          <e type="operand">1</e>
          <e type="operand">1</e>
          <e type="function" args="3">line</e>
          <e type="function" args="3">for</e>
          <e type="operand">x</e>
          <e type="operand">r</e>
          <e type="operand">1</e>
          <e type="operator" args="2">-</e>
          <e type="operand">c</e>
          <e type="function" args="3">el</e>
          <e type="operand">x</e>
          <e type="operand">r</e>
          <e type="operand">c</e>
          <e type="function" args="3">el</e>
          <e type="operator" args="2">:</e>
          <e type="operand">y</e>
          <e type="operand">r</e>
          <e type="operand">1</e>
          <e type="operator" args="2">-</e>
          <e type="operand">c</e>
          <e type="function" args="3">el</e>
          <e type="operand">y</e>
          <e type="operand">r</e>
          <e type="operand">c</e>
          <e type="function" args="3">el</e>
          <e type="operator" args="2">:</e>
          <e type="operand">1</e>
          <e type="operand">2</e>
          <e type="function" args="4">mat</e>
          <e type="operand">3</e>
          <e type="operand">1</e>
          <e type="function" args="5">line</e>
          <e type="function" args="3">for</e>
          <e type="operand">1</e>
          <e type="operand">1</e>
          <e type="function" args="3">line</e>
          <e type="operand">1</e>
          <e type="operand">1</e>
          <e type="function" args="3">line</e>
          <e type="function" args="3">for</e>
          <e type="operand">MR</e>
          <e type="operand">MG</e>
          <e type="operand">MB</e>
          <e type="operand">1</e>
          <e type="operand">3</e>
          <e type="function" args="5">mat</e>
          <e type="function" args="1">eval</e>
          <e type="operand">10</e>
          <e type="operand">1</e>
          <e type="function" args="12">line</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="13" left="792" top="1062" width="740" height="186" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand">q1</e>
          <e type="operand">q2</e>
          <e type="operand">i1</e>
          <e type="operand">i2</e>
          <e type="operand">io</e>
          <e type="operand">MR</e>
          <e type="operand">MG</e>
          <e type="operand">MB</e>
          <e type="function" args="8">¦ΠAxy</e>
          <e type="operand">q2</e>
          <e type="operand">ι</e>
          <e type="operand">i1</e>
          <e type="operand">i2</e>
          <e type="function" args="2">range</e>
          <e type="operand">q1</e>
          <e type="operand" style="string">X</e>
          <e type="operator" args="2">≡</e>
          <e type="operand">MR</e>
          <e type="operand">io</e>
          <e type="operand">ι</e>
          <e type="function" args="3">el</e>
          <e type="operand">¦ΠAx</e>
          <e type="operand">1</e>
          <e type="function" args="2">el</e>
          <e type="operator" args="2">:</e>
          <e type="operand">MG</e>
          <e type="operand">io</e>
          <e type="operand">ι</e>
          <e type="function" args="3">el</e>
          <e type="operand">¦ΠAx</e>
          <e type="operand">2</e>
          <e type="function" args="2">el</e>
          <e type="operator" args="2">:</e>
          <e type="operand">MB</e>
          <e type="operand">io</e>
          <e type="operand">ι</e>
          <e type="function" args="3">el</e>
          <e type="operand">¦ΠAx</e>
          <e type="operand">3</e>
          <e type="function" args="2">el</e>
          <e type="operator" args="2">:</e>
          <e type="operand">1</e>
          <e type="operand">3</e>
          <e type="function" args="5">mat</e>
          <e type="operand">MR</e>
          <e type="operand">ι</e>
          <e type="operand">io</e>
          <e type="function" args="3">el</e>
          <e type="operand">¦ΠAy</e>
          <e type="operand">1</e>
          <e type="function" args="2">el</e>
          <e type="operator" args="2">:</e>
          <e type="operand">MG</e>
          <e type="operand">ι</e>
          <e type="operand">io</e>
          <e type="function" args="3">el</e>
          <e type="operand">¦ΠAy</e>
          <e type="operand">2</e>
          <e type="function" args="2">el</e>
          <e type="operator" args="2">:</e>
          <e type="operand">MB</e>
          <e type="operand">ι</e>
          <e type="operand">io</e>
          <e type="function" args="3">el</e>
          <e type="operand">¦ΠAy</e>
          <e type="operand">3</e>
          <e type="function" args="2">el</e>
          <e type="operator" args="2">:</e>
          <e type="operand">1</e>
          <e type="operand">3</e>
          <e type="function" args="5">mat</e>
          <e type="function" args="3">if</e>
          <e type="function" args="3">for</e>
          <e type="operand">0</e>
          <e type="function" args="3">if</e>
          <e type="operand">MR</e>
          <e type="operand">MG</e>
          <e type="operand">MB</e>
          <e type="operand">1</e>
          <e type="operand">3</e>
          <e type="function" args="5">mat</e>
          <e type="function" args="1">eval</e>
          <e type="operand">2</e>
          <e type="operand">1</e>
          <e type="function" args="4">line</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="14" left="36" top="1431" width="171" height="36" border="true" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand">¦ΠAx</e>
          <e type="operand">128</e>
          <e type="operand">128</e>
          <e type="operand">128</e>
          <e type="operand">1</e>
          <e type="operand">3</e>
          <e type="function" args="5">mat</e>
          <e type="function" args="1">transpose</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="15" left="216" top="1431" width="171" height="36" border="true" color="#000000" bgColor="#ffffff" fontSize="10">
      <math>
        <input>
          <e type="operand">¦ΠAy</e>
          <e type="operand">128</e>
          <e type="operand">128</e>
          <e type="operand">128</e>
          <e type="operand">1</e>
          <e type="operand">3</e>
          <e type="function" args="5">mat</e>
          <e type="function" args="1">transpose</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="16" left="468" top="1431" width="168" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
      <text lang="eng">
        <p>Colors for the axis</p>
      </text>
    </region>
    <region id="17" top="1467" color="#000000" bgColor="#ffffff">
      <area terminator="true" />
    </region>
  </region>
  <region id="18" top="1494" color="#000000" bgColor="#ffffff">
    <area collapsed="false">
      <title lang="eng">
        <p>Examples</p>
      </title>
    </area>
    <region id="19" left="18" top="1521" width="287" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
      <text lang="eng">
        <p>Foreground and background colors: </p>
      </text>
    </region>
    <region id="20" left="36" top="1548" width="153" height="40" color="#000000" bgColor="#ffffff" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">FC.1</e>
          <e type="operand">128</e>
          <e type="operand">64</e>
          <e type="operand">128</e>
          <e type="operand">1</e>
          <e type="operand">3</e>
          <e type="function" args="5">mat</e>
          <e type="function" args="1">transpose</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="21" left="198" top="1548" width="145" height="40" color="#000000" bgColor="#ffffff" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">FC.2</e>
          <e type="operand">0</e>
          <e type="operand">128</e>
          <e type="operand">255</e>
          <e type="operand">1</e>
          <e type="operand">3</e>
          <e type="function" args="5">mat</e>
          <e type="function" args="1">transpose</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="22" left="351" top="1548" width="161" height="40" color="#000000" bgColor="#ffffff" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">BC.1</e>
          <e type="operand">240</e>
          <e type="operand">255</e>
          <e type="operand">255</e>
          <e type="operand">1</e>
          <e type="operand">3</e>
          <e type="function" args="5">mat</e>
          <e type="function" args="1">transpose</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="23" left="522" top="1548" width="161" height="40" color="#000000" bgColor="#ffffff" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">BC.2</e>
          <e type="operand">255</e>
          <e type="operand">255</e>
          <e type="operand">240</e>
          <e type="operand">1</e>
          <e type="operand">3</e>
          <e type="function" args="5">mat</e>
          <e type="function" args="1">transpose</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="24" left="18" top="1602" width="297" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
      <text lang="eng">
        <p>Number of points to eval functions:</p>
      </text>
    </region>
    <region id="25" left="342" top="1602" width="62" height="24" color="#000000" bgColor="#ffffdc" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">¦N</e>
          <e type="operand">80</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="26" left="18" top="1638" width="688" height="40" color="#000000" bgColor="#ffffff" fontSize="10">
      <text lang="eng">
        <p>Define the plot range, the size of the plot window and the offstet in pixeles, the thikness of the plot trace, the percent for axes and how many marks: </p>
      </text>
    </region>
    <region id="27" left="36" top="1683" width="207" height="45" color="#000000" bgColor="#ffffdc" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">¦ΠP</e>
          <e type="operand">π</e>
          <e type="operator" args="1">-</e>
          <e type="operand">π</e>
          <e type="operand">400</e>
          <e type="operand">2</e>
          <e type="operand">1</e>
          <e type="operand">90</e>
          <e type="operand" style="unit">%</e>
          <e type="operator" args="2">*</e>
          <e type="operand">0</e>
          <e type="operand">3</e>
          <e type="operator" args="1">-</e>
          <e type="operand">4</e>
          <e type="operand">200</e>
          <e type="operand">2</e>
          <e type="operand">1</e>
          <e type="operand">90</e>
          <e type="operand" style="unit">%</e>
          <e type="operator" args="2">*</e>
          <e type="operand">0</e>
          <e type="operand">2</e>
          <e type="operand">7</e>
          <e type="function" args="16">mat</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="28" left="342" top="1683" width="251" height="57" color="#000000" bgColor="#ffffff" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">x.min</e>
          <e type="operand">x.max</e>
          <e type="operand">px</e>
          <e type="operand">ox</e>
          <e type="operand">tx</e>
          <e type="operand">ax</e>
          <e type="operand">τx</e>
          <e type="operand">y.min</e>
          <e type="operand">y.max</e>
          <e type="operand">py</e>
          <e type="operand">oy</e>
          <e type="operand">ty</e>
          <e type="operand">ay</e>
          <e type="operand">τy</e>
          <e type="operand">2</e>
          <e type="operand">7</e>
          <e type="function" args="16">mat</e>
          <e type="operand">¦ΠP</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="29" left="18" top="1746" width="159" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
      <text lang="eng">
        <p>Functions to plot:</p>
      </text>
    </region>
    <region id="30" left="36" top="1782" width="257" height="49" color="#000000" bgColor="#ffffff" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">X</e>
          <e type="operand">x.min</e>
          <e type="operand">x.max</e>
          <e type="operand">x.min</e>
          <e type="operand">x.max</e>
          <e type="operand">x.min</e>
          <e type="operator" args="2">-</e>
          <e type="operand">¦N</e>
          <e type="operand">1</e>
          <e type="operator" args="2">-</e>
          <e type="operator" args="2">/</e>
          <e type="operator" args="2">+</e>
          <e type="function" args="3">range</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="31" left="342" top="1782" width="264" height="42" color="#000000" bgColor="#ffffdc" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">Y</e>
          <e type="operand">X</e>
          <e type="operand">3</e>
          <e type="operand">X</e>
          <e type="operator" args="2">*</e>
          <e type="function" args="1">cos</e>
          <e type="operator" args="2">*</e>
          <e type="function" args="1">vectorize</e>
          <e type="operand">X</e>
          <e type="operand">2</e>
          <e type="operator" args="2">^</e>
          <e type="operand">4</e>
          <e type="operator" args="2">-</e>
          <e type="function" args="1">vectorize</e>
          <e type="operand">X</e>
          <e type="function" args="1">vectorize</e>
          <e type="function" args="3">augment</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="32" left="18" top="1845" width="195" height="32" color="#000000" bgColor="#ffffff" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">M.1</e>
          <e type="operand">X</e>
          <e type="operand">Y</e>
          <e type="operand">FC.1</e>
          <e type="operand">BC.1</e>
          <e type="function" args="4">¦Πxy</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="33" left="279" top="1845" width="410" height="208" color="#000000" bgColor="#ffffff" fontSize="10" showInputData="False">
      <image>
        <imagefile filename="1eqmf.png" lenght="4114" width="400" height="200" option="border=false;" dataRenderXmlLength="0" renderExt=".png" OLDwidht="400" OLDheight="200" select_rotation="0°">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</imagefile>
        <input>
          <e type="operand">M.1</e>
        </input>
      </image>
    </region>
    <region id="34" left="18" top="2070" width="176" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
      <text lang="eng">
        <p>Parametric equations</p>
      </text>
    </region>
    <region id="35" left="342" top="2070" width="162" height="43" color="#000000" bgColor="#ffffff" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">T</e>
          <e type="operand">0</e>
          <e type="operand">2</e>
          <e type="operand">π</e>
          <e type="operator" args="2">*</e>
          <e type="bracket">(</e>
          <e type="operand">2</e>
          <e type="operand">π</e>
          <e type="operator" args="2">*</e>
          <e type="operand">¦N</e>
          <e type="operand">1</e>
          <e type="operator" args="2">-</e>
          <e type="operator" args="2">/</e>
          <e type="function" args="3">range</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="36" left="36" top="2124" width="113" height="38" color="#000000" bgColor="#ffffdc" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">X</e>
          <e type="operand">1</e>
          <e type="function" args="2">el</e>
          <e type="operand">3</e>
          <e type="operand">T</e>
          <e type="function" args="1">cos</e>
          <e type="operator" args="2">*</e>
          <e type="function" args="1">vectorize</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="37" left="171" top="2124" width="147" height="38" color="#000000" bgColor="#ffffdc" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">X</e>
          <e type="operand">2</e>
          <e type="function" args="2">el</e>
          <e type="operand">0.5</e>
          <e type="operand">T</e>
          <e type="operator" args="2">*</e>
          <e type="operand">T</e>
          <e type="function" args="1">cos</e>
          <e type="operator" args="2">*</e>
          <e type="function" args="1">vectorize</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="38" left="342" top="2124" width="97" height="38" color="#000000" bgColor="#ffffdc" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">X</e>
          <e type="operand">3</e>
          <e type="function" args="2">el</e>
          <e type="operand">T</e>
          <e type="function" args="1">sin</e>
          <e type="function" args="1">vectorize</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="39" left="477" top="2124" width="197" height="34" color="#000000" bgColor="#ffffff" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">X</e>
          <e type="operand">X</e>
          <e type="operand">1</e>
          <e type="function" args="2">el</e>
          <e type="operand">X</e>
          <e type="operand">2</e>
          <e type="function" args="2">el</e>
          <e type="operand">X</e>
          <e type="operand">3</e>
          <e type="function" args="2">el</e>
          <e type="function" args="3">augment</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="40" left="36" top="2160" width="113" height="38" color="#000000" bgColor="#ffffdc" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">Y</e>
          <e type="operand">1</e>
          <e type="function" args="2">el</e>
          <e type="operand">2</e>
          <e type="operand">T</e>
          <e type="function" args="1">sin</e>
          <e type="operator" args="2">*</e>
          <e type="function" args="1">vectorize</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="41" left="171" top="2160" width="147" height="38" color="#000000" bgColor="#ffffdc" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">Y</e>
          <e type="operand">2</e>
          <e type="function" args="2">el</e>
          <e type="operand">0.5</e>
          <e type="operand">T</e>
          <e type="operator" args="2">*</e>
          <e type="operand">T</e>
          <e type="function" args="1">sin</e>
          <e type="operator" args="2">*</e>
          <e type="function" args="1">vectorize</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="42" left="342" top="2160" width="113" height="38" color="#000000" bgColor="#ffffdc" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">Y</e>
          <e type="operand">3</e>
          <e type="function" args="2">el</e>
          <e type="operand">4</e>
          <e type="operand">T</e>
          <e type="operator" args="2">*</e>
          <e type="function" args="1">sin</e>
          <e type="function" args="1">vectorize</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="43" left="477" top="2160" width="197" height="34" color="#000000" bgColor="#ffffff" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">Y</e>
          <e type="operand">Y</e>
          <e type="operand">1</e>
          <e type="function" args="2">el</e>
          <e type="operand">Y</e>
          <e type="operand">2</e>
          <e type="function" args="2">el</e>
          <e type="operand">Y</e>
          <e type="operand">3</e>
          <e type="function" args="2">el</e>
          <e type="function" args="3">augment</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="44" left="18" top="2214" width="195" height="32" color="#000000" bgColor="#ffffff" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">M.2</e>
          <e type="operand">X</e>
          <e type="operand">Y</e>
          <e type="operand">FC.2</e>
          <e type="operand">BC.2</e>
          <e type="function" args="4">¦Πxy</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="45" left="279" top="2214" width="410" height="208" color="#000000" bgColor="#ffffff" fontSize="10" showInputData="False">
      <image>
        <imagefile filename="03hto.png" lenght="3759" width="400" height="200" option="border=false;" dataRenderXmlLength="0" renderExt=".png" OLDwidht="400" OLDheight="200" select_rotation="0°">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</imagefile>
        <input>
          <e type="operand">M.2</e>
        </input>
      </image>
    </region>
    <region id="46" left="9" top="2439" width="532" height="40" color="#000000" bgColor="#ffffff" fontSize="10">
      <text lang="eng">
        <p>Given that both have the same range and size we can "add" them. (With white background the colors of traces reamins unchanged) </p>
      </text>
    </region>
    <region id="47" left="279" top="2484" width="410" height="208" color="#000000" bgColor="#ffffff" fontSize="10">
      <image>
        <imagefile filename="bawyj.png" lenght="6564" width="400" height="200" option="border=false;" dataRenderXmlLength="0" renderExt=".png" OLDwidht="400" OLDheight="200" select_rotation="0°">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</imagefile>
        <input>
          <e type="operand">M.1</e>
          <e type="operand">M.2</e>
          <e type="operator" args="2">+</e>
          <e type="operand">255</e>
          <e type="operator" args="2">-</e>
        </input>
      </image>
    </region>
    <region id="48" left="9" top="2727" width="463" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
      <text lang="eng">
        <p>Polygons can be done too: star, triangle and rectangle.</p>
      </text>
    </region>
    <region id="49" left="36" top="2763" width="223" height="45" color="#000000" bgColor="#ffffdc" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">¦ΠP</e>
          <e type="operand">1</e>
          <e type="operator" args="1">-</e>
          <e type="operand">10</e>
          <e type="operand">400</e>
          <e type="operand">0</e>
          <e type="operand">1</e>
          <e type="operand">100</e>
          <e type="operand" style="unit">%</e>
          <e type="operator" args="2">*</e>
          <e type="operand">0</e>
          <e type="operand">1</e>
          <e type="operator" args="1">-</e>
          <e type="operand">20</e>
          <e type="operand">200</e>
          <e type="operand">0</e>
          <e type="operand">1</e>
          <e type="operand">100</e>
          <e type="operand" style="unit">%</e>
          <e type="operator" args="2">*</e>
          <e type="operand">0</e>
          <e type="operand">2</e>
          <e type="operand">7</e>
          <e type="function" args="16">mat</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="50" left="288" top="2763" width="141" height="36" color="#000000" bgColor="#ffffdc" fontSize="10">
      <math>
        <input>
          <e type="operand">X</e>
          <e type="operand">2</e>
          <e type="operand">6</e>
          <e type="operand">2</e>
          <e type="operand">4</e>
          <e type="operand">6</e>
          <e type="operand">2</e>
          <e type="operand">1</e>
          <e type="operand">6</e>
          <e type="function" args="8">mat</e>
          <e type="function" args="1">transpose</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="51" left="441" top="2763" width="173" height="36" color="#000000" bgColor="#ffffdc" fontSize="10">
      <math>
        <input>
          <e type="operand">Y</e>
          <e type="operand">14</e>
          <e type="operand">14</e>
          <e type="operand">2</e>
          <e type="operand">18</e>
          <e type="operand">2</e>
          <e type="operand">14</e>
          <e type="operand">1</e>
          <e type="operand">6</e>
          <e type="function" args="8">mat</e>
          <e type="function" args="1">transpose</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="52" left="639" top="2763" width="123" height="31" color="#000000" bgColor="#ffffff" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">M.3</e>
          <e type="operand">X</e>
          <e type="operand">Y</e>
          <e type="function" args="2">¦Πxy</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="53" left="288" top="2799" width="113" height="36" color="#000000" bgColor="#ffffdc" fontSize="10">
      <math>
        <input>
          <e type="operand">X</e>
          <e type="operand">1</e>
          <e type="operand">2</e>
          <e type="operand">1</e>
          <e type="operand">1</e>
          <e type="operand">1</e>
          <e type="operand">4</e>
          <e type="function" args="6">mat</e>
          <e type="function" args="1">transpose</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="54" left="441" top="2799" width="113" height="36" color="#000000" bgColor="#ffffdc" fontSize="10">
      <math>
        <input>
          <e type="operand">Y</e>
          <e type="operand">6</e>
          <e type="operand">6</e>
          <e type="operand">1</e>
          <e type="operand">6</e>
          <e type="operand">1</e>
          <e type="operand">4</e>
          <e type="function" args="6">mat</e>
          <e type="function" args="1">transpose</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="55" left="639" top="2799" width="123" height="31" color="#000000" bgColor="#ffffff" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">M.4</e>
          <e type="operand">X</e>
          <e type="operand">Y</e>
          <e type="function" args="2">¦Πxy</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="56" left="288" top="2835" width="127" height="36" color="#000000" bgColor="#ffffdc" fontSize="10">
      <math>
        <input>
          <e type="operand">X</e>
          <e type="operand">7</e>
          <e type="operand">9</e>
          <e type="operand">9</e>
          <e type="operand">7</e>
          <e type="operand">7</e>
          <e type="operand">1</e>
          <e type="operand">5</e>
          <e type="function" args="7">mat</e>
          <e type="function" args="1">transpose</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="57" left="441" top="2835" width="127" height="36" color="#000000" bgColor="#ffffdc" fontSize="10">
      <math>
        <input>
          <e type="operand">Y</e>
          <e type="operand">6</e>
          <e type="operand">6</e>
          <e type="operand">1</e>
          <e type="operand">1</e>
          <e type="operand">6</e>
          <e type="operand">1</e>
          <e type="operand">5</e>
          <e type="function" args="7">mat</e>
          <e type="function" args="1">transpose</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="58" left="639" top="2835" width="123" height="31" color="#000000" bgColor="#ffffff" fontSize="10">
      <math optimize="2">
        <input>
          <e type="operand">M.5</e>
          <e type="operand">X</e>
          <e type="operand">Y</e>
          <e type="function" args="2">¦Πxy</e>
          <e type="operator" args="2">:</e>
        </input>
      </math>
    </region>
    <region id="59" left="279" top="2880" width="410" height="208" color="#000000" bgColor="#ffffff" fontSize="10">
      <image>
        <imagefile filename="wyxcc.png" lenght="2687" width="400" height="200" option="border=false;" dataRenderXmlLength="0" renderExt=".png" OLDwidht="400" OLDheight="200" select_rotation="0°">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</imagefile>
        <input>
          <e type="operand">M.3</e>
          <e type="operand">M.4</e>
          <e type="operator" args="2">+</e>
          <e type="operand">M.5</e>
          <e type="operator" args="2">+</e>
          <e type="operand">255</e>
          <e type="operand">2</e>
          <e type="operator" args="2">*</e>
          <e type="operator" args="2">-</e>
        </input>
      </image>
    </region>
    <region id="60" top="3123" color="#000000" bgColor="#ffffff">
      <area terminator="true" />
    </region>
  </region>
  <region id="61" left="693" top="3141" width="60" height="24" color="#000000" bgColor="#ffffff" fontSize="10">
    <math optimize="2">
      <input>
        <e type="operand">Alvaro</e>
      </input>
    </math>
  </region>
</regions>