about summary refs log tree commit diff stats
path: root/html/apps/raytracing/vec.mu.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/apps/raytracing/vec.mu.html')
-rw-r--r--html/apps/raytracing/vec.mu.html8
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">&lt;-</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">&quot;(&quot;</span>
 <span id="L10" class="LineNr"> 10 </span>  <span class="PreProc">var</span> tmp/<span class="Constant">eax</span>: (addr float) <span class="SpecialChar">&lt;-</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">&quot;, &quot;</span>
 <span id="L13" class="LineNr"> 13 </span>  tmp <span class="SpecialChar">&lt;-</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">&quot;, &quot;</span>
 <span id="L16" class="LineNr"> 16 </span>  tmp <span class="SpecialChar">&lt;-</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">&quot;)&quot;</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">&lt;-</span> vec3-length in
 <span id="L98" class="LineNr"> 98 </span><span class="CommentedCode">#?   print-string 0, &quot;len: &quot;</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, &quot;\n&quot;</span>
 <span id="L101" class="LineNr">101 </span>  copy-object in, out
 <span id="L102" class="LineNr">102 </span>  vec3-scale-down out, len