5 <title>Mu -
509bezier.mu
</title>
6 <meta name=
"Generator" content=
"Vim/8.2">
7 <meta name=
"plugin-version" content=
"vim8.1_v2">
8 <meta name=
"syntax" content=
"none">
9 <meta name=
"settings" content=
"number_lines,use_css,pre_wrap,no_foldcolumn,expand_tabs,line_ids,prevent_copy=,use_input_for_pc=fallback">
10 <meta name=
"colorscheme" content=
"minimal-light">
13 pre { white-space: pre-wrap; font-family: monospace; color: #000000; background-color: #ffffd7; }
14 body { font-size:12pt; font-family: monospace; color: #000000; background-color: #ffffd7; }
16 * { font-size:12pt; font-size: 1em; }
17 .PreProc { color: #c000c0; }
18 .muRegEdx { color: #af5f00; }
19 .Special { color: #ff6060; }
21 .muRegEbx { color: #5f00ff; }
22 .Constant { color: #008787; }
23 .muRegEcx { color: #870000; }
24 .Delimiter { color: #c000c0; }
25 .muFunction { color: #af5f00; text-decoration: underline; }
26 .muComment { color: #005faf; }
33 /* function to open any folds containing a jumped-to line before jumping to it */
37 lineNum
= window
.location
.hash
;
38 lineNum
= lineNum
.substr(1); /* strip off '#' */
40 if (lineNum
.indexOf('L') == -1) {
41 lineNum
= 'L'+lineNum
;
43 var lineElem
= document
.getElementById(lineNum
);
44 /* Always jump to new location even if the line was hidden inside a fold, or
45 * we corrected the raw number to a line ID.
48 lineElem
.scrollIntoView(true);
52 if ('onhashchange' in window
) {
53 window
.onhashchange
= JumpToLine
;
59 <body onload='JumpToLine();'
>
60 <a href='https://github.com/akkartik/mu/blob/main/
509bezier.mu'
>https://github.com/akkartik/mu/blob/main/
509bezier.mu
</a>
61 <pre id='vimCodeElement'
>
62 <span id=
"L1" class=
"LineNr"> 1 </span><span class=
"muComment"># Draw a second-degree bezier curve using
3 control points.
</span>
63 <span id=
"L2" class=
"LineNr"> 2 </span><span class=
"muComment">#
</span>
64 <span id=
"L3" class=
"LineNr"> 3 </span><span class=
"muComment">#
<a href=
"http://members.chello.at/easyfilter/bresenham.html">http://members.chello.at/easyfilter/bresenham.html
</a> says that this algorithm
</span>
65 <span id=
"L4" class=
"LineNr"> 4 </span><span class=
"muComment"># works only if
"the gradient does not change sign
". Either:
</span>
66 <span id=
"L5" class=
"LineNr"> 5 </span><span class=
"muComment"># x0
>= x1
>= x2
</span>
67 <span id=
"L6" class=
"LineNr"> 6 </span><span class=
"muComment"># or:
</span>
68 <span id=
"L7" class=
"LineNr"> 7 </span><span class=
"muComment"># x0
<= x1
<= x2
</span>
69 <span id=
"L8" class=
"LineNr"> 8 </span><span class=
"muComment"># Similarly for y0, y1 and y2.
</span>
70 <span id=
"L9" class=
"LineNr"> 9 </span><span class=
"muComment">#
</span>
71 <span id=
"L10" class=
"LineNr"> 10 </span><span class=
"muComment"># This seems superficially similar to the notions of convex and concave, but I
</span>
72 <span id=
"L11" class=
"LineNr"> 11 </span><span class=
"muComment"># think it isn't. I think it's purely a property of the frame of reference.
</span>
73 <span id=
"L12" class=
"LineNr"> 12 </span><span class=
"muComment"># Rotating the axes can make the gradient change sign or stop changing sign
</span>
74 <span id=
"L13" class=
"LineNr"> 13 </span><span class=
"muComment"># even as
3 points preserve fixed relative bearings to each other.
</span>
75 <span id=
"L14" class=
"LineNr"> 14 </span><span class=
"PreProc">fn
</span> <span class=
"muFunction"><a href='
509bezier.mu.html#L14'
>draw-monotonic-bezier
</a></span> <a href='
500fake-screen.mu.html#L16'
>screen
</a>: (addr
<a href='
500fake-screen.mu.html#L16'
>screen
</a>), x0: int, y0: int, x1: int, y1: int, x2: int, y2: int, color: int
<span class=
"Delimiter">{
</span>
76 <span id=
"L15" class=
"LineNr"> 15 </span> <span class=
"PreProc">var
</span> xx: int
77 <span id=
"L16" class=
"LineNr"> 16 </span> <span class=
"PreProc">var
</span> yy: int
78 <span id=
"L17" class=
"LineNr"> 17 </span> <span class=
"PreProc">var
</span> xy: int
79 <span id=
"L18" class=
"LineNr"> 18 </span> <span class=
"PreProc">var
</span> sx: int
80 <span id=
"L19" class=
"LineNr"> 19 </span> <span class=
"PreProc">var
</span> sy: int
81 <span id=
"L20" class=
"LineNr"> 20 </span> <span class=
"muComment"># sx = x2-x1
</span>
82 <span id=
"L21" class=
"LineNr"> 21 </span> <span class=
"PreProc">var
</span> tmp/eax: int
<span class=
"Special"><-
</span> copy x2
83 <span id=
"L22" class=
"LineNr"> 22 </span> tmp
<span class=
"Special"><-
</span> subtract x1
84 <span id=
"L23" class=
"LineNr"> 23 </span> copy-to sx, tmp
85 <span id=
"L24" class=
"LineNr"> 24 </span> <span class=
"muComment"># sy = y2-y1
</span>
86 <span id=
"L25" class=
"LineNr"> 25 </span> tmp
<span class=
"Special"><-
</span> copy y2
87 <span id=
"L26" class=
"LineNr"> 26 </span> tmp
<span class=
"Special"><-
</span> subtract y1
88 <span id=
"L27" class=
"LineNr"> 27 </span> copy-to sy, tmp
89 <span id=
"L28" class=
"LineNr"> 28 </span> <span class=
"muComment"># xx = x0-x1
</span>
90 <span id=
"L29" class=
"LineNr"> 29 </span> tmp
<span class=
"Special"><-
</span> copy x0
91 <span id=
"L30" class=
"LineNr"> 30 </span> tmp
<span class=
"Special"><-
</span> subtract x1
92 <span id=
"L31" class=
"LineNr"> 31 </span> copy-to xx, tmp
93 <span id=
"L32" class=
"LineNr"> 32 </span> <span class=
"muComment"># yy = y0-y1
</span>
94 <span id=
"L33" class=
"LineNr"> 33 </span> tmp
<span class=
"Special"><-
</span> copy y0
95 <span id=
"L34" class=
"LineNr"> 34 </span> tmp
<span class=
"Special"><-
</span> subtract y1
96 <span id=
"L35" class=
"LineNr"> 35 </span> copy-to yy, tmp
97 <span id=
"L36" class=
"LineNr"> 36 </span> <span class=
"muComment"># cur = xx*sy - yy*sx
</span>
98 <span id=
"L37" class=
"LineNr"> 37 </span> <span class=
"PreProc">var
</span> cur-f/
<span class=
"Constant">xmm4
</span>: float
<span class=
"Special"><-
</span> convert xx
99 <span id=
"L38" class=
"LineNr"> 38 </span> <span class=
"Delimiter">{
</span>
100 <span id=
"L39" class=
"LineNr"> 39 </span> <span class=
"PreProc">var
</span> sy-f/
<span class=
"Constant">xmm1
</span>: float
<span class=
"Special"><-
</span> convert sy
101 <span id=
"L40" class=
"LineNr"> 40 </span> cur-f
<span class=
"Special"><-
</span> multiply sy-f
102 <span id=
"L41" class=
"LineNr"> 41 </span> <span class=
"PreProc">var
</span> tmp2-f/
<span class=
"Constant">xmm1
</span>: float
<span class=
"Special"><-
</span> convert yy
103 <span id=
"L42" class=
"LineNr"> 42 </span> <span class=
"PreProc">var
</span> sx-f/
<span class=
"Constant">xmm2
</span>: float
<span class=
"Special"><-
</span> convert sx
104 <span id=
"L43" class=
"LineNr"> 43 </span> tmp2-f
<span class=
"Special"><-
</span> multiply sx-f
105 <span id=
"L44" class=
"LineNr"> 44 </span> cur-f
<span class=
"Special"><-
</span> subtract tmp2-f
106 <span id=
"L45" class=
"LineNr"> 45 </span> <span class=
"Delimiter">}
</span>
107 <span id=
"L46" class=
"LineNr"> 46 </span> <span class=
"muComment"># if (xx*sx
> 0) abort
</span>
108 <span id=
"L47" class=
"LineNr"> 47 </span> <span class=
"Delimiter">{
</span>
109 <span id=
"L48" class=
"LineNr"> 48 </span> tmp
<span class=
"Special"><-
</span> copy xx
110 <span id=
"L49" class=
"LineNr"> 49 </span> tmp
<span class=
"Special"><-
</span> multiply sx
111 <span id=
"L50" class=
"LineNr"> 50 </span> compare tmp,
<span class=
"Constant">0</span>
112 <span id=
"L51" class=
"LineNr"> 51 </span> <span class=
"PreProc">break-if-
<=
</span>
113 <span id=
"L52" class=
"LineNr"> 52 </span> <a href='
317abort.subx.html#L5'
>abort
</a> <span class=
"Constant">"bezier: gradient of x changes sign
"</span>
114 <span id=
"L53" class=
"LineNr"> 53 </span> <span class=
"Delimiter">}
</span>
115 <span id=
"L54" class=
"LineNr"> 54 </span> <span class=
"muComment"># if (yy*sy
> 0) abort
</span>
116 <span id=
"L55" class=
"LineNr"> 55 </span> <span class=
"Delimiter">{
</span>
117 <span id=
"L56" class=
"LineNr"> 56 </span> tmp
<span class=
"Special"><-
</span> copy yy
118 <span id=
"L57" class=
"LineNr"> 57 </span> tmp
<span class=
"Special"><-
</span> multiply sy
119 <span id=
"L58" class=
"LineNr"> 58 </span> compare tmp,
<span class=
"Constant">0</span>
120 <span id=
"L59" class=
"LineNr"> 59 </span> <span class=
"PreProc">break-if-
<=
</span>
121 <span id=
"L60" class=
"LineNr"> 60 </span> <a href='
317abort.subx.html#L5'
>abort
</a> <span class=
"Constant">"bezier: gradient of y changes sign
"</span>
122 <span id=
"L61" class=
"LineNr"> 61 </span> <span class=
"Delimiter">}
</span>
123 <span id=
"L62" class=
"LineNr"> 62 </span> <span class=
"muComment"># swap P0 and P2 if necessary
</span>
124 <span id=
"L63" class=
"LineNr"> 63 </span> <span class=
"Delimiter">{
</span>
125 <span id=
"L64" class=
"LineNr"> 64 </span> <span class=
"muComment"># dist1 = sx*sx + sy*sy
</span>
126 <span id=
"L65" class=
"LineNr"> 65 </span> <span class=
"PreProc">var
</span> dist1/
<span class=
"muRegEcx">ecx
</span>: int
<span class=
"Special"><-
</span> copy sx
127 <span id=
"L66" class=
"LineNr"> 66 </span> <span class=
"Delimiter">{
</span>
128 <span id=
"L67" class=
"LineNr"> 67 </span> dist1
<span class=
"Special"><-
</span> multiply sx
129 <span id=
"L68" class=
"LineNr"> 68 </span> <span class=
"Delimiter">{
</span>
130 <span id=
"L69" class=
"LineNr"> 69 </span> <span class=
"PreProc">break-if-not-overflow
</span>
131 <span id=
"L70" class=
"LineNr"> 70 </span> <a href='
317abort.subx.html#L5'
>abort
</a> <span class=
"Constant">"bezier: overflow
1"</span>
132 <span id=
"L71" class=
"LineNr"> 71 </span> <span class=
"Delimiter">}
</span>
133 <span id=
"L72" class=
"LineNr"> 72 </span> tmp
<span class=
"Special"><-
</span> copy sy
134 <span id=
"L73" class=
"LineNr"> 73 </span> tmp
<span class=
"Special"><-
</span> multiply sy
135 <span id=
"L74" class=
"LineNr"> 74 </span> <span class=
"Delimiter">{
</span>
136 <span id=
"L75" class=
"LineNr"> 75 </span> <span class=
"PreProc">break-if-not-overflow
</span>
137 <span id=
"L76" class=
"LineNr"> 76 </span> <a href='
317abort.subx.html#L5'
>abort
</a> <span class=
"Constant">"bezier: overflow
2"</span>
138 <span id=
"L77" class=
"LineNr"> 77 </span> <span class=
"Delimiter">}
</span>
139 <span id=
"L78" class=
"LineNr"> 78 </span> dist1
<span class=
"Special"><-
</span> add tmp
140 <span id=
"L79" class=
"LineNr"> 79 </span> <span class=
"Delimiter">}
</span>
141 <span id=
"L80" class=
"LineNr"> 80 </span> <span class=
"muComment"># dist2 = xx*xx + yy*yy
</span>
142 <span id=
"L81" class=
"LineNr"> 81 </span> <span class=
"PreProc">var
</span> dist2/
<span class=
"muRegEdx">edx
</span>: int
<span class=
"Special"><-
</span> copy xx
143 <span id=
"L82" class=
"LineNr"> 82 </span> <span class=
"Delimiter">{
</span>
144 <span id=
"L83" class=
"LineNr"> 83 </span> dist2
<span class=
"Special"><-
</span> multiply xx
145 <span id=
"L84" class=
"LineNr"> 84 </span> <span class=
"Delimiter">{
</span>
146 <span id=
"L85" class=
"LineNr"> 85 </span> <span class=
"PreProc">break-if-not-overflow
</span>
147 <span id=
"L86" class=
"LineNr"> 86 </span> <a href='
317abort.subx.html#L5'
>abort
</a> <span class=
"Constant">"bezier: overflow
3"</span>
148 <span id=
"L87" class=
"LineNr"> 87 </span> <span class=
"Delimiter">}
</span>
149 <span id=
"L88" class=
"LineNr"> 88 </span> tmp
<span class=
"Special"><-
</span> copy yy
150 <span id=
"L89" class=
"LineNr"> 89 </span> tmp
<span class=
"Special"><-
</span> multiply yy
151 <span id=
"L90" class=
"LineNr"> 90 </span> <span class=
"Delimiter">{
</span>
152 <span id=
"L91" class=
"LineNr"> 91 </span> <span class=
"PreProc">break-if-not-overflow
</span>
153 <span id=
"L92" class=
"LineNr"> 92 </span> <a href='
317abort.subx.html#L5'
>abort
</a> <span class=
"Constant">"bezier: overflow
4"</span>
154 <span id=
"L93" class=
"LineNr"> 93 </span> <span class=
"Delimiter">}
</span>
155 <span id=
"L94" class=
"LineNr"> 94 </span> dist2
<span class=
"Special"><-
</span> add tmp
156 <span id=
"L95" class=
"LineNr"> 95 </span> <span class=
"Delimiter">}
</span>
157 <span id=
"L96" class=
"LineNr"> 96 </span> <span class=
"muComment"># if (dist1
<= dist2) break
</span>
158 <span id=
"L97" class=
"LineNr"> 97 </span> compare dist1, dist2
159 <span id=
"L98" class=
"LineNr"> 98 </span> <span class=
"PreProc">break-if-
<=
</span>
160 <span id=
"L99" class=
"LineNr"> 99 </span> <span class=
"muComment"># swap x0 and x2
</span>
161 <span id=
"L100" class=
"LineNr">100 </span> tmp
<span class=
"Special"><-
</span> copy x0
162 <span id=
"L101" class=
"LineNr">101 </span> copy-to x2, tmp
163 <span id=
"L102" class=
"LineNr">102 </span> tmp
<span class=
"Special"><-
</span> copy sx
164 <span id=
"L103" class=
"LineNr">103 </span> tmp
<span class=
"Special"><-
</span> add x1
165 <span id=
"L104" class=
"LineNr">104 </span> copy-to x0, tmp
166 <span id=
"L105" class=
"LineNr">105 </span> <span class=
"muComment"># swap y0 and y2
</span>
167 <span id=
"L106" class=
"LineNr">106 </span> tmp
<span class=
"Special"><-
</span> copy y0
168 <span id=
"L107" class=
"LineNr">107 </span> copy-to y2, tmp
169 <span id=
"L108" class=
"LineNr">108 </span> tmp
<span class=
"Special"><-
</span> copy sy
170 <span id=
"L109" class=
"LineNr">109 </span> tmp
<span class=
"Special"><-
</span> add y1
171 <span id=
"L110" class=
"LineNr">110 </span> copy-to y0, tmp
172 <span id=
"L111" class=
"LineNr">111 </span> <span class=
"muComment"># cur = -cur
</span>
173 <span id=
"L112" class=
"LineNr">112 </span> <span class=
"PreProc">var
</span> negative-
1/eax: int
<span class=
"Special"><-
</span> copy
<span class=
"Constant">-
1</span>
174 <span id=
"L113" class=
"LineNr">113 </span> <span class=
"PreProc">var
</span> negative-
1-f/
<span class=
"Constant">xmm1
</span>: float
<span class=
"Special"><-
</span> convert negative-
1
175 <span id=
"L114" class=
"LineNr">114 </span> cur-f
<span class=
"Special"><-
</span> multiply negative-
1-f
176 <span id=
"L115" class=
"LineNr">115 </span> <span class=
"Delimiter">}
</span>
177 <span id=
"L116" class=
"LineNr">116 </span> <span class=
"PreProc">var
</span> x/
<span class=
"muRegEcx">ecx
</span>: int
<span class=
"Special"><-
</span> copy x0
178 <span id=
"L117" class=
"LineNr">117 </span> <span class=
"PreProc">var
</span> y/
<span class=
"muRegEdx">edx
</span>: int
<span class=
"Special"><-
</span> copy y0
179 <span id=
"L118" class=
"LineNr">118 </span> <span class=
"PreProc">var
</span> zero-f: float
180 <span id=
"L119" class=
"LineNr">119 </span> <span class=
"muComment"># plot a curved part if necessary
</span>
181 <span id=
"L120" class=
"LineNr">120 </span> $draw-monotonic-bezier:curve:
<span class=
"Delimiter">{
</span>
182 <span id=
"L121" class=
"LineNr">121 </span> compare cur-f, zero-f
183 <span id=
"L122" class=
"LineNr">122 </span> <span class=
"PreProc">break-if-=
</span>
184 <span id=
"L123" class=
"LineNr">123 </span> <span class=
"muComment"># xx += sx
</span>
185 <span id=
"L124" class=
"LineNr">124 </span> tmp
<span class=
"Special"><-
</span> copy sx
186 <span id=
"L125" class=
"LineNr">125 </span> add-to xx, tmp
187 <span id=
"L126" class=
"LineNr">126 </span> <span class=
"muComment"># sx = sgn(x2-x)
</span>
188 <span id=
"L127" class=
"LineNr">127 </span> tmp
<span class=
"Special"><-
</span> copy x2
189 <span id=
"L128" class=
"LineNr">128 </span> tmp
<span class=
"Special"><-
</span> subtract x
190 <span id=
"L129" class=
"LineNr">129 </span> tmp
<span class=
"Special"><-
</span> <a href='
506math.mu.html#L10'
>sgn
</a> tmp
191 <span id=
"L130" class=
"LineNr">130 </span> copy-to sx, tmp
192 <span id=
"L131" class=
"LineNr">131 </span> <span class=
"muComment"># xx *= sx
</span>
193 <span id=
"L132" class=
"LineNr">132 </span> tmp
<span class=
"Special"><-
</span> copy sx
194 <span id=
"L133" class=
"LineNr">133 </span> tmp
<span class=
"Special"><-
</span> multiply xx
195 <span id=
"L134" class=
"LineNr">134 </span> copy-to xx, tmp
196 <span id=
"L135" class=
"LineNr">135 </span> <span class=
"muComment"># yy += sy
</span>
197 <span id=
"L136" class=
"LineNr">136 </span> tmp
<span class=
"Special"><-
</span> copy sy
198 <span id=
"L137" class=
"LineNr">137 </span> add-to yy, tmp
199 <span id=
"L138" class=
"LineNr">138 </span> <span class=
"muComment"># sy = sgn(y2-y)
</span>
200 <span id=
"L139" class=
"LineNr">139 </span> tmp
<span class=
"Special"><-
</span> copy y2
201 <span id=
"L140" class=
"LineNr">140 </span> tmp
<span class=
"Special"><-
</span> subtract y
202 <span id=
"L141" class=
"LineNr">141 </span> tmp
<span class=
"Special"><-
</span> <a href='
506math.mu.html#L10'
>sgn
</a> tmp
203 <span id=
"L142" class=
"LineNr">142 </span> copy-to sy, tmp
204 <span id=
"L143" class=
"LineNr">143 </span> <span class=
"muComment"># yy *= sy
</span>
205 <span id=
"L144" class=
"LineNr">144 </span> tmp
<span class=
"Special"><-
</span> copy sy
206 <span id=
"L145" class=
"LineNr">145 </span> tmp
<span class=
"Special"><-
</span> multiply yy
207 <span id=
"L146" class=
"LineNr">146 </span> copy-to yy, tmp
208 <span id=
"L147" class=
"LineNr">147 </span> <span class=
"muComment"># xy =
2*xx*xy
</span>
209 <span id=
"L148" class=
"LineNr">148 </span> tmp
<span class=
"Special"><-
</span> copy xx
210 <span id=
"L149" class=
"LineNr">149 </span> tmp
<span class=
"Special"><-
</span> multiply yy
211 <span id=
"L150" class=
"LineNr">150 </span> <span class=
"Delimiter">{
</span>
212 <span id=
"L151" class=
"LineNr">151 </span> <span class=
"PreProc">break-if-not-overflow
</span>
213 <span id=
"L152" class=
"LineNr">152 </span> <a href='
317abort.subx.html#L5'
>abort
</a> <span class=
"Constant">"bezier: overflow
5"</span>
214 <span id=
"L153" class=
"LineNr">153 </span> <span class=
"Delimiter">}
</span>
215 <span id=
"L154" class=
"LineNr">154 </span> tmp
<span class=
"Special"><-
</span> shift-left
<span class=
"Constant">1</span>
216 <span id=
"L155" class=
"LineNr">155 </span> <span class=
"Delimiter">{
</span>
217 <span id=
"L156" class=
"LineNr">156 </span> <span class=
"PreProc">break-if-not-overflow
</span>
218 <span id=
"L157" class=
"LineNr">157 </span> <a href='
317abort.subx.html#L5'
>abort
</a> <span class=
"Constant">"bezier: overflow
6"</span>
219 <span id=
"L158" class=
"LineNr">158 </span> <span class=
"Delimiter">}
</span>
220 <span id=
"L159" class=
"LineNr">159 </span> copy-to xy, tmp
221 <span id=
"L160" class=
"LineNr">160 </span> <span class=
"muComment"># xx *= xx
</span>
222 <span id=
"L161" class=
"LineNr">161 </span> tmp
<span class=
"Special"><-
</span> copy xx
223 <span id=
"L162" class=
"LineNr">162 </span> tmp
<span class=
"Special"><-
</span> multiply tmp
224 <span id=
"L163" class=
"LineNr">163 </span> <span class=
"Delimiter">{
</span>
225 <span id=
"L164" class=
"LineNr">164 </span> <span class=
"PreProc">break-if-not-overflow
</span>
226 <span id=
"L165" class=
"LineNr">165 </span> <a href='
317abort.subx.html#L5'
>abort
</a> <span class=
"Constant">"bezier: overflow
7"</span>
227 <span id=
"L166" class=
"LineNr">166 </span> <span class=
"Delimiter">}
</span>
228 <span id=
"L167" class=
"LineNr">167 </span> copy-to xx, tmp
229 <span id=
"L168" class=
"LineNr">168 </span> <span class=
"muComment"># yy *= yy
</span>
230 <span id=
"L169" class=
"LineNr">169 </span> tmp
<span class=
"Special"><-
</span> copy yy
231 <span id=
"L170" class=
"LineNr">170 </span> tmp
<span class=
"Special"><-
</span> multiply tmp
232 <span id=
"L171" class=
"LineNr">171 </span> <span class=
"Delimiter">{
</span>
233 <span id=
"L172" class=
"LineNr">172 </span> <span class=
"PreProc">break-if-not-overflow
</span>
234 <span id=
"L173" class=
"LineNr">173 </span> <a href='
317abort.subx.html#L5'
>abort
</a> <span class=
"Constant">"bezier: overflow
7"</span>
235 <span id=
"L174" class=
"LineNr">174 </span> <span class=
"Delimiter">}
</span>
236 <span id=
"L175" class=
"LineNr">175 </span> copy-to yy, tmp
237 <span id=
"L176" class=
"LineNr">176 </span> <span class=
"muComment"># if (cur*sx*sy
< 0) negative curvature
</span>
238 <span id=
"L177" class=
"LineNr">177 </span> <span class=
"Delimiter">{
</span>
239 <span id=
"L178" class=
"LineNr">178 </span> <span class=
"PreProc">var
</span> tmp-f/
<span class=
"Constant">xmm0
</span>: float
<span class=
"Special"><-
</span> copy cur-f
240 <span id=
"L179" class=
"LineNr">179 </span> <span class=
"PreProc">var
</span> sx-f/
<span class=
"Constant">xmm1
</span>: float
<span class=
"Special"><-
</span> convert sx
241 <span id=
"L180" class=
"LineNr">180 </span> tmp-f
<span class=
"Special"><-
</span> multiply sx-f
242 <span id=
"L181" class=
"LineNr">181 </span> <span class=
"PreProc">var
</span> sy-f/
<span class=
"Constant">xmm1
</span>: float
<span class=
"Special"><-
</span> convert sy
243 <span id=
"L182" class=
"LineNr">182 </span> tmp-f
<span class=
"Special"><-
</span> multiply sy-f
244 <span id=
"L183" class=
"LineNr">183 </span> compare tmp-f, zero-f
245 <span id=
"L184" class=
"LineNr">184 </span> <span class=
"PreProc">break-if-float
>=
</span>
246 <span id=
"L185" class=
"LineNr">185 </span> <span class=
"muComment">#
</span>
247 <span id=
"L186" class=
"LineNr">186 </span> negate xx
248 <span id=
"L187" class=
"LineNr">187 </span> negate yy
249 <span id=
"L188" class=
"LineNr">188 </span> negate xy
250 <span id=
"L189" class=
"LineNr">189 </span> <span class=
"muComment"># cur = -cur
</span>
251 <span id=
"L190" class=
"LineNr">190 </span> <span class=
"PreProc">var
</span> negative-
1/eax: int
<span class=
"Special"><-
</span> copy
<span class=
"Constant">-
1</span>
252 <span id=
"L191" class=
"LineNr">191 </span> <span class=
"PreProc">var
</span> negative-
1-f/
<span class=
"Constant">xmm1
</span>: float
<span class=
"Special"><-
</span> convert negative-
1
253 <span id=
"L192" class=
"LineNr">192 </span> cur-f
<span class=
"Special"><-
</span> multiply negative-
1-f
254 <span id=
"L193" class=
"LineNr">193 </span> <span class=
"Delimiter">}
</span>
255 <span id=
"L194" class=
"LineNr">194 </span> <span class=
"PreProc">var
</span> four/
<span class=
"muRegEbx">ebx
</span>: int
<span class=
"Special"><-
</span> copy
<span class=
"Constant">4</span>
256 <span id=
"L195" class=
"LineNr">195 </span> <span class=
"PreProc">var
</span> dx-f/
<span class=
"Constant">xmm5
</span>: float
<span class=
"Special"><-
</span> convert four
257 <span id=
"L196" class=
"LineNr">196 </span> <span class=
"PreProc">var
</span> dy-f/
<span class=
"Constant">xmm6
</span>: float
<span class=
"Special"><-
</span> convert four
258 <span id=
"L197" class=
"LineNr">197 </span> <span class=
"muComment"># dx =
4*sy*cur*(x1-x0) + xx - xy
</span>
259 <span id=
"L198" class=
"LineNr">198 </span> <span class=
"Delimiter">{
</span>
260 <span id=
"L199" class=
"LineNr">199 </span> <span class=
"PreProc">var
</span> tmp/
<span class=
"Constant">xmm0
</span>: float
<span class=
"Special"><-
</span> convert sy
261 <span id=
"L200" class=
"LineNr">200 </span> dx-f
<span class=
"Special"><-
</span> multiply tmp
262 <span id=
"L201" class=
"LineNr">201 </span> dx-f
<span class=
"Special"><-
</span> multiply cur-f
263 <span id=
"L202" class=
"LineNr">202 </span> tmp
<span class=
"Special"><-
</span> convert x1
264 <span id=
"L203" class=
"LineNr">203 </span> <span class=
"PreProc">var
</span> tmp2/
<span class=
"Constant">xmm3
</span>: float
<span class=
"Special"><-
</span> convert x
265 <span id=
"L204" class=
"LineNr">204 </span> tmp
<span class=
"Special"><-
</span> subtract tmp2
266 <span id=
"L205" class=
"LineNr">205 </span> dx-f
<span class=
"Special"><-
</span> multiply tmp
267 <span id=
"L206" class=
"LineNr">206 </span> tmp
<span class=
"Special"><-
</span> convert xx
268 <span id=
"L207" class=
"LineNr">207 </span> dx-f
<span class=
"Special"><-
</span> add tmp
269 <span id=
"L208" class=
"LineNr">208 </span> tmp
<span class=
"Special"><-
</span> convert xy
270 <span id=
"L209" class=
"LineNr">209 </span> dx-f
<span class=
"Special"><-
</span> subtract tmp
271 <span id=
"L210" class=
"LineNr">210 </span> <span class=
"Delimiter">}
</span>
272 <span id=
"L211" class=
"LineNr">211 </span> <span class=
"muComment"># dy-f =
4*sx*cur*(y0-y1) + yy - xy
</span>
273 <span id=
"L212" class=
"LineNr">212 </span> <span class=
"Delimiter">{
</span>
274 <span id=
"L213" class=
"LineNr">213 </span> <span class=
"PreProc">var
</span> tmp/
<span class=
"Constant">xmm0
</span>: float
<span class=
"Special"><-
</span> convert sx
275 <span id=
"L214" class=
"LineNr">214 </span> dy-f
<span class=
"Special"><-
</span> multiply tmp
276 <span id=
"L215" class=
"LineNr">215 </span> dy-f
<span class=
"Special"><-
</span> multiply cur-f
277 <span id=
"L216" class=
"LineNr">216 </span> tmp
<span class=
"Special"><-
</span> convert y
278 <span id=
"L217" class=
"LineNr">217 </span> <span class=
"PreProc">var
</span> tmp2/
<span class=
"Constant">xmm3
</span>: float
<span class=
"Special"><-
</span> convert y1
279 <span id=
"L218" class=
"LineNr">218 </span> tmp
<span class=
"Special"><-
</span> subtract tmp2
280 <span id=
"L219" class=
"LineNr">219 </span> dy-f
<span class=
"Special"><-
</span> multiply tmp
281 <span id=
"L220" class=
"LineNr">220 </span> tmp
<span class=
"Special"><-
</span> convert yy
282 <span id=
"L221" class=
"LineNr">221 </span> dy-f
<span class=
"Special"><-
</span> add tmp
283 <span id=
"L222" class=
"LineNr">222 </span> tmp
<span class=
"Special"><-
</span> convert xy
284 <span id=
"L223" class=
"LineNr">223 </span> dy-f
<span class=
"Special"><-
</span> subtract tmp
285 <span id=
"L224" class=
"LineNr">224 </span> <span class=
"Delimiter">}
</span>
286 <span id=
"L225" class=
"LineNr">225 </span> <span class=
"muComment"># xx += xx
</span>
287 <span id=
"L226" class=
"LineNr">226 </span> tmp
<span class=
"Special"><-
</span> copy xx
288 <span id=
"L227" class=
"LineNr">227 </span> add-to xx, tmp
289 <span id=
"L228" class=
"LineNr">228 </span> <span class=
"muComment"># yy += yy
</span>
290 <span id=
"L229" class=
"LineNr">229 </span> tmp
<span class=
"Special"><-
</span> copy yy
291 <span id=
"L230" class=
"LineNr">230 </span> add-to yy, tmp
292 <span id=
"L231" class=
"LineNr">231 </span> <span class=
"muComment"># err = dx+dy+xy
</span>
293 <span id=
"L232" class=
"LineNr">232 </span> <span class=
"PreProc">var
</span> err-f/
<span class=
"Constant">xmm7
</span>: float
<span class=
"Special"><-
</span> copy dx-f
294 <span id=
"L233" class=
"LineNr">233 </span> err-f
<span class=
"Special"><-
</span> add dy-f
295 <span id=
"L234" class=
"LineNr">234 </span> <span class=
"PreProc">var
</span> xy-f/
<span class=
"Constant">xmm0
</span>: float
<span class=
"Special"><-
</span> convert xy
296 <span id=
"L235" class=
"LineNr">235 </span> err-f
<span class=
"Special"><-
</span> add xy-f
297 <span id=
"L236" class=
"LineNr">236 </span> <span class=
"muComment">#
</span>
298 <span id=
"L237" class=
"LineNr">237 </span> $draw-monotonic-bezier:
<span class=
"PreProc">loop
</span>:
<span class=
"Delimiter">{
</span>
299 <span id=
"L238" class=
"LineNr">238 </span> <a href='
500fake-screen.mu.html#L580'
>pixel
</a> <a href='
500fake-screen.mu.html#L16'
>screen
</a>, x, y, color
300 <span id=
"L239" class=
"LineNr">239 </span> <span class=
"muComment"># if (x == x2
&& y == y2) return
</span>
301 <span id=
"L240" class=
"LineNr">240 </span> <span class=
"Delimiter">{
</span>
302 <span id=
"L241" class=
"LineNr">241 </span> compare x, x2
303 <span id=
"L242" class=
"LineNr">242 </span> <span class=
"PreProc">break-if-!=
</span>
304 <span id=
"L243" class=
"LineNr">243 </span> compare y, y2
305 <span id=
"L244" class=
"LineNr">244 </span> <span class=
"PreProc">break-if-!=
</span>
306 <span id=
"L245" class=
"LineNr">245 </span> <span class=
"PreProc">return
</span>
307 <span id=
"L246" class=
"LineNr">246 </span> <span class=
"Delimiter">}
</span>
308 <span id=
"L247" class=
"LineNr">247 </span> <span class=
"muComment"># perform-y-step? = (
2*err
< dx)
</span>
309 <span id=
"L248" class=
"LineNr">248 </span> <span class=
"PreProc">var
</span> perform-y-step?/eax: boolean
<span class=
"Special"><-
</span> copy
<span class=
"Constant">0</span>/false
310 <span id=
"L249" class=
"LineNr">249 </span> <span class=
"PreProc">var
</span> two-err-f/
<span class=
"Constant">xmm0
</span>: float
<span class=
"Special"><-
</span> copy err-f
311 <span id=
"L250" class=
"LineNr">250 </span> <span class=
"Delimiter">{
</span>
312 <span id=
"L251" class=
"LineNr">251 </span> <span class=
"PreProc">var
</span> two/
<span class=
"muRegEbx">ebx
</span>: int
<span class=
"Special"><-
</span> copy
<span class=
"Constant">2</span>
313 <span id=
"L252" class=
"LineNr">252 </span> <span class=
"PreProc">var
</span> two-f/
<span class=
"Constant">xmm1
</span>: float
<span class=
"Special"><-
</span> convert two
314 <span id=
"L253" class=
"LineNr">253 </span> two-err-f
<span class=
"Special"><-
</span> multiply two-f
315 <span id=
"L254" class=
"LineNr">254 </span> compare two-err-f, dx-f
316 <span id=
"L255" class=
"LineNr">255 </span> <span class=
"PreProc">break-if-float
>=
</span>
317 <span id=
"L256" class=
"LineNr">256 </span> perform-y-step?
<span class=
"Special"><-
</span> copy
<span class=
"Constant">1</span>/true
318 <span id=
"L257" class=
"LineNr">257 </span> <span class=
"Delimiter">}
</span>
319 <span id=
"L258" class=
"LineNr">258 </span> <span class=
"muComment"># if (
2*err
> dy)
</span>
320 <span id=
"L259" class=
"LineNr">259 </span> <span class=
"Delimiter">{
</span>
321 <span id=
"L260" class=
"LineNr">260 </span> compare two-err-f, dy-f
322 <span id=
"L261" class=
"LineNr">261 </span> <span class=
"PreProc">break-if-float
<=
</span>
323 <span id=
"L262" class=
"LineNr">262 </span> <span class=
"muComment"># x += sx
</span>
324 <span id=
"L263" class=
"LineNr">263 </span> x
<span class=
"Special"><-
</span> add sx
325 <span id=
"L264" class=
"LineNr">264 </span> <span class=
"muComment"># dx -= xy
</span>
326 <span id=
"L265" class=
"LineNr">265 </span> <span class=
"PreProc">var
</span> xy-f/
<span class=
"Constant">xmm0
</span>: float
<span class=
"Special"><-
</span> convert xy
327 <span id=
"L266" class=
"LineNr">266 </span> dx-f
<span class=
"Special"><-
</span> subtract xy-f
328 <span id=
"L267" class=
"LineNr">267 </span> <span class=
"muComment"># dy += yy
</span>
329 <span id=
"L268" class=
"LineNr">268 </span> <span class=
"PreProc">var
</span> yy-f/
<span class=
"Constant">xmm0
</span>: float
<span class=
"Special"><-
</span> convert yy
330 <span id=
"L269" class=
"LineNr">269 </span> dy-f
<span class=
"Special"><-
</span> add yy-f
331 <span id=
"L270" class=
"LineNr">270 </span> <span class=
"muComment"># err += dy
</span>
332 <span id=
"L271" class=
"LineNr">271 </span> err-f
<span class=
"Special"><-
</span> add dy-f
333 <span id=
"L272" class=
"LineNr">272 </span> <span class=
"Delimiter">}
</span>
334 <span id=
"L273" class=
"LineNr">273 </span> <span class=
"muComment"># if perform-y-step?
</span>
335 <span id=
"L274" class=
"LineNr">274 </span> <span class=
"Delimiter">{
</span>
336 <span id=
"L275" class=
"LineNr">275 </span> compare perform-y-step?,
<span class=
"Constant">0</span>/false
337 <span id=
"L276" class=
"LineNr">276 </span> <span class=
"PreProc">break-if-=
</span>
338 <span id=
"L277" class=
"LineNr">277 </span> <span class=
"muComment"># y += sy
</span>
339 <span id=
"L278" class=
"LineNr">278 </span> y
<span class=
"Special"><-
</span> add sy
340 <span id=
"L279" class=
"LineNr">279 </span> <span class=
"muComment"># dy -= xy
</span>
341 <span id=
"L280" class=
"LineNr">280 </span> <span class=
"PreProc">var
</span> xy-f/
<span class=
"Constant">xmm0
</span>: float
<span class=
"Special"><-
</span> convert xy
342 <span id=
"L281" class=
"LineNr">281 </span> dy-f
<span class=
"Special"><-
</span> subtract xy-f
343 <span id=
"L282" class=
"LineNr">282 </span> <span class=
"muComment"># dx += xx
</span>
344 <span id=
"L283" class=
"LineNr">283 </span> <span class=
"PreProc">var
</span> xx-f/
<span class=
"Constant">xmm0
</span>: float
<span class=
"Special"><-
</span> convert xx
345 <span id=
"L284" class=
"LineNr">284 </span> dx-f
<span class=
"Special"><-
</span> add xx-f
346 <span id=
"L285" class=
"LineNr">285 </span> <span class=
"muComment"># err += dx
</span>
347 <span id=
"L286" class=
"LineNr">286 </span> err-f
<span class=
"Special"><-
</span> add dx-f
348 <span id=
"L287" class=
"LineNr">287 </span> <span class=
"Delimiter">}
</span>
349 <span id=
"L288" class=
"LineNr">288 </span> <span class=
"muComment"># if (dy
< dx) loop
</span>
350 <span id=
"L289" class=
"LineNr">289 </span> compare dy-f, dx-f
351 <span id=
"L290" class=
"LineNr">290 </span> <span class=
"PreProc">loop-if-float
<</span>
352 <span id=
"L291" class=
"LineNr">291 </span> <span class=
"Delimiter">}
</span>
353 <span id=
"L292" class=
"LineNr">292 </span> <span class=
"Delimiter">}
</span>
354 <span id=
"L293" class=
"LineNr">293 </span> <span class=
"muComment"># plot the remaining straight line
</span>
355 <span id=
"L294" class=
"LineNr">294 </span> <a href='
507line.mu.html#L1'
>draw-line
</a> <a href='
500fake-screen.mu.html#L16'
>screen
</a>, x y, x2 y2, color
356 <span id=
"L295" class=
"LineNr">295 </span><span class=
"Delimiter">}
</span>
357 <span id=
"L296" class=
"LineNr">296 </span>
358 <span id=
"L297" class=
"LineNr">297 </span><span class=
"muComment">#
0 <= u
<=
1</span>
359 <span id=
"L298" class=
"LineNr">298 </span><span class=
"PreProc">fn
</span> <span class=
"muFunction"><a href='
509bezier.mu.html#L298'
>bezier-point
</a></span> u: float, x0: int, x1: int, x2: int
<span class=
"PreProc"> -
> </span>_/eax: int
<span class=
"Delimiter">{
</span>
360 <span id=
"L299" class=
"LineNr">299 </span> <span class=
"PreProc">var
</span> one/eax: int
<span class=
"Special"><-
</span> copy
<span class=
"Constant">1</span>
361 <span id=
"L300" class=
"LineNr">300 </span> <span class=
"PreProc">var
</span> u-prime/
<span class=
"Constant">xmm0
</span>: float
<span class=
"Special"><-
</span> convert one
362 <span id=
"L301" class=
"LineNr">301 </span> u-prime
<span class=
"Special"><-
</span> subtract u
363 <span id=
"L302" class=
"LineNr">302 </span> <span class=
"PreProc">var
</span> result/
<span class=
"Constant">xmm1
</span>: float
<span class=
"Special"><-
</span> convert x0
364 <span id=
"L303" class=
"LineNr">303 </span> result
<span class=
"Special"><-
</span> multiply u-prime
365 <span id=
"L304" class=
"LineNr">304 </span> result
<span class=
"Special"><-
</span> multiply u-prime
366 <span id=
"L305" class=
"LineNr">305 </span> <span class=
"PreProc">var
</span> term2/
<span class=
"Constant">xmm2
</span>: float
<span class=
"Special"><-
</span> convert x1
367 <span id=
"L306" class=
"LineNr">306 </span> term2
<span class=
"Special"><-
</span> multiply u
368 <span id=
"L307" class=
"LineNr">307 </span> term2
<span class=
"Special"><-
</span> multiply u-prime
369 <span id=
"L308" class=
"LineNr">308 </span> result
<span class=
"Special"><-
</span> add term2
370 <span id=
"L309" class=
"LineNr">309 </span> result
<span class=
"Special"><-
</span> add term2
371 <span id=
"L310" class=
"LineNr">310 </span> <span class=
"PreProc">var
</span> term3/
<span class=
"Constant">xmm2
</span>: float
<span class=
"Special"><-
</span> convert x2
372 <span id=
"L311" class=
"LineNr">311 </span> term3
<span class=
"Special"><-
</span> multiply u
373 <span id=
"L312" class=
"LineNr">312 </span> term3
<span class=
"Special"><-
</span> multiply u
374 <span id=
"L313" class=
"LineNr">313 </span> result
<span class=
"Special"><-
</span> add term3
375 <span id=
"L314" class=
"LineNr">314 </span> <span class=
"PreProc">var
</span> result/eax: int
<span class=
"Special"><-
</span> convert result
376 <span id=
"L315" class=
"LineNr">315 </span> <span class=
"PreProc">return
</span> result
377 <span id=
"L316" class=
"LineNr">316 </span><span class=
"Delimiter">}
</span>
381 <!-- vim: set foldmethod=manual : -->