about summary refs log tree commit diff stats
path: root/html/apps/raytracing
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-10-03 20:17:43 -0700
committerKartik Agaram <vc@akkartik.com>2020-10-03 20:17:43 -0700
commit6112864aeac32ec21bd27bfce6b9c44d6a74d45c (patch)
treea506c93e7f1afbda1de893e99959405b4b890394 /html/apps/raytracing
parentcce9cda97179af4500042ba85c24493d2a1274f8 (diff)
downloadmu-6112864aeac32ec21bd27bfce6b9c44d6a74d45c.tar.gz
6936
Diffstat (limited to 'html/apps/raytracing')
-rw-r--r--html/apps/raytracing/2.mu.html146
1 files changed, 146 insertions, 0 deletions
diff --git a/html/apps/raytracing/2.mu.html b/html/apps/raytracing/2.mu.html
new file mode 100644
index 00000000..42cfab65
--- /dev/null
+++ b/html/apps/raytracing/2.mu.html
@@ -0,0 +1,146 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+<meta http-equiv="content-type" content="text/html; charset=UTF-8">
+<title>Mu - apps/raytracing/2.mu</title>
+<meta name="Generator" content="Vim/8.1">
+<meta name="plugin-version" content="vim8.1_v1">
+<meta name="syntax" content="none">
+<meta name="settings" content="number_lines,use_css,pre_wrap,no_foldcolumn,expand_tabs,line_ids,prevent_copy=">
+<meta name="colorscheme" content="minimal-light">
+<style type="text/css">
+<!--
+pre { white-space: pre-wrap; font-family: monospace; color: #000000; background-color: #c6c6c6; }
+body { font-size:12pt; font-family: monospace; color: #000000; background-color: #c6c6c6; }
+a { color:inherit; }
+* { font-size:12pt; font-size: 1em; }
+.CommentedCode { color: #8a8a8a; }
+.LineNr { }
+.muFunction { color: #af5f00; text-decoration: underline; }
+.SpecialChar { color: #d70000; }
+.Comment { color: #005faf; }
+.Constant { color: #008787; }
+.Delimiter { color: #c000c0; }
+.PreProc { color: #c000c0; }
+-->
+</style>
+
+<script type='text/javascript'>
+<!--
+
+/* function to open any folds containing a jumped-to line before jumping to it */
+function JumpToLine()
+{
+  var lineNum;
+  lineNum = window.location.hash;
+  lineNum = lineNum.substr(1); /* strip off '#' */
+
+  if (lineNum.indexOf('L') == -1) {
+    lineNum = 'L'+lineNum;
+  }
+  var lineElem = document.getElementById(lineNum);
+  /* Always jump to new location even if the line was hidden inside a fold, or
+   * we corrected the raw number to a line ID.
+   */
+  if (lineElem) {
+    lineElem.scrollIntoView(true);
+  }
+  return true;
+}
+if ('onhashchange' in window) {
+  window.onhashchange = JumpToLine;
+}
+
+-->
+</script>
+</head>
+<body onload='JumpToLine();'>
+<a href='https://github.com/akkartik/mu/blob/master/apps/raytracing/2.mu'>https://github.com/akkartik/mu/blob/master/apps/raytracing/2.mu</a>
+<pre id='vimCodeElement'>
+<span id="L1" class="LineNr"> 1 </span><span class="Comment"># Listing 7 of <a href="https://raytracing.github.io/books/RayTracingInOneWeekend.html">https://raytracing.github.io/books/RayTracingInOneWeekend.html</a></span>
+<span id="L2" class="LineNr"> 2 </span><span class="Comment">#</span>
+<span id="L3" class="LineNr"> 3 </span><span class="Comment"># To run (on Linux):</span>
+<span id="L4" class="LineNr"> 4 </span><span class="Comment">#   $ git clone <a href="https://github.com/akkartik/mu">https://github.com/akkartik/mu</a></span>
+<span id="L5" class="LineNr"> 5 </span><span class="Comment">#   $ cd mu</span>
+<span id="L6" class="LineNr"> 6 </span><span class="Comment">#   $ ./translate_mu apps/raytracing/2.mu</span>
+<span id="L7" class="LineNr"> 7 </span><span class="Comment">#   $ ./a.elf &gt; 2.ppm</span>
+<span id="L8" class="LineNr"> 8 </span>
+<span id="L9" class="LineNr"> 9 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='2.mu.html#L9'>main</a></span><span class="PreProc"> -&gt; </span>exit-status/<span class="Constant">ebx</span>: int <span class="Delimiter">{</span>
+<span id="L10" class="LineNr">10 </span>  <a href='../../405screen.mu.html#L179'>print-string</a> <span class="Constant">0</span>, <span class="Constant">&quot;P3\n256 256\n255\n&quot;</span>
+<span id="L11" class="LineNr">11 </span>  <span class="PreProc">var</span> _four/<span class="Constant">edx</span>: int <span class="SpecialChar">&lt;-</span> copy <span class="Constant">4</span>
+<span id="L12" class="LineNr">12 </span>  <span class="PreProc">var</span> four/xmm1: float <span class="SpecialChar">&lt;-</span> convert _four
+<span id="L13" class="LineNr">13 </span>  <span class="PreProc">var</span> one-fourth/xmm1: float <span class="SpecialChar">&lt;-</span> reciprocal four
+<span id="L14" class="LineNr">14 </span>  <span class="PreProc">var</span> max/<span class="Constant">edx</span>: int <span class="SpecialChar">&lt;-</span> copy <span class="Constant">0xff</span>
+<span id="L15" class="LineNr">15 </span>  <span class="PreProc">var</span> image-size/xmm2: float <span class="SpecialChar">&lt;-</span> convert max
+<span id="L16" class="LineNr">16 </span>  <span class="PreProc">var</span> j/<span class="Constant">ecx</span>: int <span class="SpecialChar">&lt;-</span> copy <span class="Constant">0xff</span>
+<span id="L17" class="LineNr">17 </span>  <span class="Delimiter">{</span>
+<span id="L18" class="LineNr">18 </span>    compare j, <span class="Constant">0</span>
+<span id="L19" class="LineNr">19 </span>    <span class="PreProc">break-if-&lt;</span>
+<span id="L20" class="LineNr">20 </span>    <span class="PreProc">var</span> i/<span class="Constant">eax</span>: int <span class="SpecialChar">&lt;-</span> copy <span class="Constant">0</span>
+<span id="L21" class="LineNr">21 </span>    <span class="Delimiter">{</span>
+<span id="L22" class="LineNr">22 </span>      compare i, <span class="Constant">0xff</span>
+<span id="L23" class="LineNr">23 </span>      <span class="PreProc">break-if-&gt;</span>
+<span id="L24" class="LineNr">24 </span>      <span class="PreProc">var</span> c: <a href='2.mu.html#L53'>rgb</a>
+<span id="L25" class="LineNr">25 </span>      <span class="Comment"># compute r</span>
+<span id="L26" class="LineNr">26 </span>      <span class="PreProc">var</span> tmp/xmm0: float <span class="SpecialChar">&lt;-</span> convert i
+<span id="L27" class="LineNr">27 </span>      tmp <span class="SpecialChar">&lt;-</span> divide image-size
+<span id="L28" class="LineNr">28 </span>      <span class="PreProc">var</span> r-addr/<span class="Constant">edx</span>: (addr float) <span class="SpecialChar">&lt;-</span> <a href='../../131table.subx.html#L26'>get</a> c, r
+<span id="L29" class="LineNr">29 </span>      copy-to *r-addr, tmp
+<span id="L30" class="LineNr">30 </span><span class="CommentedCode">#?       var tmp2/ebx: int &lt;- reinterpret *r-addr</span>
+<span id="L31" class="LineNr">31 </span><span class="CommentedCode">#?       print-int32-hex 0, tmp2</span>
+<span id="L32" class="LineNr">32 </span><span class="CommentedCode">#?       print-string 0, &quot;\n&quot;</span>
+<span id="L33" class="LineNr">33 </span>      <span class="Comment"># compute g</span>
+<span id="L34" class="LineNr">34 </span>      tmp <span class="SpecialChar">&lt;-</span> convert j
+<span id="L35" class="LineNr">35 </span>      tmp <span class="SpecialChar">&lt;-</span> divide image-size
+<span id="L36" class="LineNr">36 </span>      <span class="PreProc">var</span> g-addr/<span class="Constant">edx</span>: (addr float) <span class="SpecialChar">&lt;-</span> <a href='../../131table.subx.html#L26'>get</a> c, g
+<span id="L37" class="LineNr">37 </span>      copy-to *g-addr, tmp
+<span id="L38" class="LineNr">38 </span>      <span class="Comment"># compute b</span>
+<span id="L39" class="LineNr">39 </span>      <span class="PreProc">var</span> b-addr/<span class="Constant">edx</span>: (addr float) <span class="SpecialChar">&lt;-</span> <a href='../../131table.subx.html#L26'>get</a> c, b
+<span id="L40" class="LineNr">40 </span>      copy-to *b-addr, one-fourth
+<span id="L41" class="LineNr">41 </span>      <span class="Comment"># emit</span>
+<span id="L42" class="LineNr">42 </span>      <span class="PreProc">var</span> c-addr/<span class="Constant">edx</span>: (addr <a href='2.mu.html#L53'>rgb</a>) <span class="SpecialChar">&lt;-</span> address c
+<span id="L43" class="LineNr">43 </span>      <a href='2.mu.html#L61'>print-rgb</a> <span class="Constant">0</span>, c-addr
+<span id="L44" class="LineNr">44 </span>      i <span class="SpecialChar">&lt;-</span> increment
+<span id="L45" class="LineNr">45 </span>      <span class="PreProc">loop</span>
+<span id="L46" class="LineNr">46 </span>    <span class="Delimiter">}</span>
+<span id="L47" class="LineNr">47 </span>    j <span class="SpecialChar">&lt;-</span> decrement
+<span id="L48" class="LineNr">48 </span>    <span class="PreProc">loop</span>
+<span id="L49" class="LineNr">49 </span>  <span class="Delimiter">}</span>
+<span id="L50" class="LineNr">50 </span>  exit-status <span class="SpecialChar">&lt;-</span> copy <span class="Constant">1</span>
+<span id="L51" class="LineNr">51 </span><span class="Delimiter">}</span>
+<span id="L52" class="LineNr">52 </span>
+<span id="L53" class="LineNr">53 </span><span class="PreProc">type</span> <a href='2.mu.html#L53'>rgb</a> <span class="Delimiter">{</span>
+<span id="L54" class="LineNr">54 </span>  <span class="Comment"># components normalized to within [0.0, 1.0]</span>
+<span id="L55" class="LineNr">55 </span>  r: float
+<span id="L56" class="LineNr">56 </span>  g: float
+<span id="L57" class="LineNr">57 </span>  b: float
+<span id="L58" class="LineNr">58 </span><span class="Delimiter">}</span>
+<span id="L59" class="LineNr">59 </span>
+<span id="L60" class="LineNr">60 </span><span class="Comment"># print translating to [0, 256)</span>
+<span id="L61" class="LineNr">61 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='2.mu.html#L61'>print-rgb</a></span> <a href='../../405screen.mu.html#L9'>screen</a>: (addr <a href='../../405screen.mu.html#L9'>screen</a>), _c: (addr <a href='2.mu.html#L53'>rgb</a>) <span class="Delimiter">{</span>
+<span id="L62" class="LineNr">62 </span>  <span class="PreProc">var</span> c/<span class="Constant">esi</span>: (addr <a href='2.mu.html#L53'>rgb</a>) <span class="SpecialChar">&lt;-</span> copy _c
+<span id="L63" class="LineNr">63 </span>  <span class="PreProc">var</span> n/<span class="Constant">ecx</span>: int <span class="SpecialChar">&lt;-</span> copy <span class="Constant">0xff</span>
+<span id="L64" class="LineNr">64 </span>  <span class="PreProc">var</span> xn/xmm1: float <span class="SpecialChar">&lt;-</span> convert n
+<span id="L65" class="LineNr">65 </span>  <span class="PreProc">var</span> tmp/xmm0: float <span class="SpecialChar">&lt;-</span> copy xn
+<span id="L66" class="LineNr">66 </span>  <span class="PreProc">var</span> tmp-a/<span class="Constant">eax</span>: (addr float) <span class="SpecialChar">&lt;-</span> <a href='../../131table.subx.html#L26'>get</a> c, r
+<span id="L67" class="LineNr">67 </span>  tmp <span class="SpecialChar">&lt;-</span> multiply *tmp-a
+<span id="L68" class="LineNr">68 </span>  <span class="PreProc">var</span> tmp2/<span class="Constant">edx</span>: int <span class="SpecialChar">&lt;-</span> convert tmp
+<span id="L69" class="LineNr">69 </span>  <a href='../../405screen.mu.html#L442'>print-int32-decimal</a> <a href='../../405screen.mu.html#L9'>screen</a>, tmp2
+<span id="L70" class="LineNr">70 </span>  <a href='../../405screen.mu.html#L179'>print-string</a> <a href='../../405screen.mu.html#L9'>screen</a>, <span class="Constant">&quot; &quot;</span>
+<span id="L71" class="LineNr">71 </span>  tmp-a <span class="SpecialChar">&lt;-</span> <a href='../../131table.subx.html#L26'>get</a> c, g
+<span id="L72" class="LineNr">72 </span>  tmp <span class="SpecialChar">&lt;-</span> copy xn
+<span id="L73" class="LineNr">73 </span>  tmp <span class="SpecialChar">&lt;-</span> multiply *tmp-a
+<span id="L74" class="LineNr">74 </span>  tmp2 <span class="SpecialChar">&lt;-</span> convert tmp
+<span id="L75" class="LineNr">75 </span>  <a href='../../405screen.mu.html#L442'>print-int32-decimal</a> <a href='../../405screen.mu.html#L9'>screen</a>, tmp2
+<span id="L76" class="LineNr">76 </span>  <a href='../../405screen.mu.html#L179'>print-string</a> <a href='../../405screen.mu.html#L9'>screen</a>, <span class="Constant">&quot; &quot;</span>
+<span id="L77" class="LineNr">77 </span>  tmp-a <span class="SpecialChar">&lt;-</span> <a href='../../131table.subx.html#L26'>get</a> c, b
+<span id="L78" class="LineNr">78 </span>  tmp <span class="SpecialChar">&lt;-</span> copy xn
+<span id="L79" class="LineNr">79 </span>  tmp <span class="SpecialChar">&lt;-</span> multiply *tmp-a
+<span id="L80" class="LineNr">80 </span>  tmp2 <span class="SpecialChar">&lt;-</span> convert tmp
+<span id="L81" class="LineNr">81 </span>  <a href='../../405screen.mu.html#L442'>print-int32-decimal</a> <a href='../../405screen.mu.html#L9'>screen</a>, tmp2
+<span id="L82" class="LineNr">82 </span>  <a href='../../405screen.mu.html#L179'>print-string</a> <a href='../../405screen.mu.html#L9'>screen</a>, <span class="Constant">&quot;\n&quot;</span>
+<span id="L83" class="LineNr">83 </span><span class="Delimiter">}</span>
+</pre>
+</body>
+</html>
+<!-- vim: set foldmethod=manual : -->