Simon Forman

Results 14 comments of Simon Forman
trafficstars

The problem is you're running Python 3.9 and the `runtest.py` script is written to Python 2. (I just had the same problem.) That's why it can't import the `termios `module,...

On Wed, Apr 21, 2021 at 04:36:40PM -0700, Joel Martin wrote: > @AP2008 @calroc sorry for the really slow followup. I basically took a long break from open source/mal stuff....

I'm a little embarrassed to show this is the state it's in, but I've been doodling since hearing about the project Saturday and I've got a start on some of...

I've almost got the Wu anti-alias line algorithm licked. I'm doing something wrong though because I keep getting artifacts in the middle of the line (drawing from both ends at...

I've kind of got Wu lines working (at least for the "first octant"! That's the easy octant you know.) I gave up on the symmetrical version (where you draw the...

> Excited for line drawing. Once we have better float support we can use that to draw wireframe graphics. In re: float support, I'm a weirdo and an iconoclast, but...

> I hope you'll be able to make it work. At the moment we just have an interpreter and no JIT. The platform needs time to mature before effort is...

I can't follow the intricacies of Wu's paper, but I gather that you don't need 64 bits for the error term since you're only interested in the N most significant...

I got the symmetrical Wu algorithm working. (I tried to make it a little closer to your style.) ``` C // LIMIT is 16 bits of 0.999... in 0.16 format...

Ah, that's awesome, I'll update the monogram font demo soon (no promises, but likely today.) I'm tempted to write some kind of simple run-length encoding... I made a start on...