diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-11-29 13:36:32 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-11-29 13:42:27 -0800 |
commit | 775f77c3346d231fc6133de2c7da2bb1e8ef0c2e (patch) | |
tree | 3daff158b0bf201c625abca645ce09014df51315 /html/apps/raytracing/vec.mu.html | |
parent | 55dfa5b98530bdeae19f5e1f118634d9c774773f (diff) | |
download | mu-775f77c3346d231fc6133de2c7da2bb1e8ef0c2e.tar.gz |
7306
Diffstat (limited to 'html/apps/raytracing/vec.mu.html')
-rw-r--r-- | html/apps/raytracing/vec.mu.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/html/apps/raytracing/vec.mu.html b/html/apps/raytracing/vec.mu.html index 9b8961c2..36084516 100644 --- a/html/apps/raytracing/vec.mu.html +++ b/html/apps/raytracing/vec.mu.html @@ -67,13 +67,13 @@ if ('onhashchange' in window) { <span id="L8" class="LineNr"> 8 </span> <span class="PreProc">var</span> v/<span class="Constant">esi</span>: (addr vec3) <span class="SpecialChar"><-</span> copy _v <span id="L9" class="LineNr"> 9 </span> <a href='../../405screen.mu.html#L169'>print-string</a> <a href='../../405screen.mu.html#L9'>screen</a>, <span class="Constant">"("</span> <span id="L10" class="LineNr"> 10 </span> <span class="PreProc">var</span> tmp/<span class="Constant">eax</span>: (addr float) <span class="SpecialChar"><-</span> <a href='../../131table.subx.html#L26'>get</a> v, x -<span id="L11" class="LineNr"> 11 </span> <a href='../../408print-float.mu.html#L92'>print-float</a> <a href='../../405screen.mu.html#L9'>screen</a>, *tmp +<span id="L11" class="LineNr"> 11 </span> <a href='../../409print-float-hex.mu.html#L118'>print-float-hex</a> <a href='../../405screen.mu.html#L9'>screen</a>, *tmp <span id="L12" class="LineNr"> 12 </span> <a href='../../405screen.mu.html#L169'>print-string</a> <a href='../../405screen.mu.html#L9'>screen</a>, <span class="Constant">", "</span> <span id="L13" class="LineNr"> 13 </span> tmp <span class="SpecialChar"><-</span> <a href='../../131table.subx.html#L26'>get</a> v, y -<span id="L14" class="LineNr"> 14 </span> <a href='../../408print-float.mu.html#L92'>print-float</a> <a href='../../405screen.mu.html#L9'>screen</a>, *tmp +<span id="L14" class="LineNr"> 14 </span> <a href='../../409print-float-hex.mu.html#L118'>print-float-hex</a> <a href='../../405screen.mu.html#L9'>screen</a>, *tmp <span id="L15" class="LineNr"> 15 </span> <a href='../../405screen.mu.html#L169'>print-string</a> <a href='../../405screen.mu.html#L9'>screen</a>, <span class="Constant">", "</span> <span id="L16" class="LineNr"> 16 </span> tmp <span class="SpecialChar"><-</span> <a href='../../131table.subx.html#L26'>get</a> v, z -<span id="L17" class="LineNr"> 17 </span> <a href='../../408print-float.mu.html#L92'>print-float</a> <a href='../../405screen.mu.html#L9'>screen</a>, *tmp +<span id="L17" class="LineNr"> 17 </span> <a href='../../409print-float-hex.mu.html#L118'>print-float-hex</a> <a href='../../405screen.mu.html#L9'>screen</a>, *tmp <span id="L18" class="LineNr"> 18 </span> <a href='../../405screen.mu.html#L169'>print-string</a> <a href='../../405screen.mu.html#L9'>screen</a>, <span class="Constant">")"</span> <span id="L19" class="LineNr"> 19 </span><span class="Delimiter">}</span> <span id="L20" class="LineNr"> 20 </span> @@ -155,7 +155,7 @@ if ('onhashchange' in window) { <span id="L96" class="LineNr"> 96 </span><span class="PreProc">fn</span> <span class="muFunction">vec3-unit</span> in: (addr vec3), out: (addr vec3) <span class="Delimiter">{</span> <span id="L97" class="LineNr"> 97 </span> <span class="PreProc">var</span> len/<span class="Constant">xmm0</span>: float <span class="SpecialChar"><-</span> vec3-length in <span id="L98" class="LineNr"> 98 </span><span class="CommentedCode">#? print-string 0, "len: "</span> -<span id="L99" class="LineNr"> 99 </span><span class="CommentedCode">#? print-float 0, len</span> +<span id="L99" class="LineNr"> 99 </span><span class="CommentedCode">#? print-float-hex 0, len</span> <span id="L100" class="LineNr">100 </span><span class="CommentedCode">#? print-string 0, "\n"</span> <span id="L101" class="LineNr">101 </span> copy-object in, out <span id="L102" class="LineNr">102 </span> vec3-scale-down out, len |