惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LangChain Blog
N
Netflix TechBlog - Medium
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Blog — PlanetScale
Blog — PlanetScale
Microsoft Security Blog
Microsoft Security Blog
D
Docker
WordPress大学
WordPress大学
罗磊的独立博客
J
Java Code Geeks
博客园 - 【当耐特】
博客园 - 司徒正美
雷峰网
雷峰网
H
Help Net Security
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
宝玉的分享
宝玉的分享
Martin Fowler
Martin Fowler
T
Tailwind CSS Blog
Google DeepMind News
Google DeepMind News
M
MIT News - Artificial intelligence
Recent Announcements
Recent Announcements
B
Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
DTFC — Draw The F***ing Circle
G33kDaddy “G33Kdaddy” · 2026-06-18 · via DEV Community

Or: the story of a bug that turned out to be more correct than the correct code


Boot sequence

Year: somewhere between 1983 and 1987.
Iron: a custom board — Motorola 68000 (32-bit. Pure luxury. The team argued about it for a week.)
and a Texas Instruments TMS34010, one of the first programmable graphics chips on the planet.
VRAM: 256 kilobytes. That's not a typo.
Mass storage: 20 megabytes. Total. OS included.
Mission: rasterize A0 architectural drawings at 400 dpi.

RTFM and do the math:

A0 = 841 × 1189 mm
At 400 dpi → ~13,300 × 18,700 pixels
1 bit per pixel → ~30 MB

The output bitmap did not fit on the disk.
The disk that also held the OS, the FAT, the filesystem driver,
the application, and the quadtree-compressed source drawing.
Every byte was hand-negotiated. Every cycle was audited.
The entire stack — OS, filesystem, elevator disk scheduler, swap system — was written
from scratch, in assembly or C, by some people with a logic analyzer and too much coffee.

This is the environment in which one needed to DTFC.


The textbook solution (a.k.a. the one that doesn't run)

The clean approach: place a point on the circle, then rotate it step by step around the origin.
Standard rotation matrix, angle a = 2π/N for N steps:

| cos(a)  -sin(a) |     applied to     | x |
| sin(a)   cos(a) |                    | y |

In code:

float x = r, y = 0;
for (int i = 0; i < N; i++) {
    plot(x, y);
    float nx = x*cos(a) - y*sin(a);
    float ny = x*sin(a) + y*cos(a);
    x = nx; y = ny;
}

Mathematically perfect. Beautiful.

Totally unrunnable on 8-bit era hardware.

  • No FPU. Not even close.
  • cos() and sin()? Lookup tables eat precious RAM. Computing them costs dozens of cycles each, on a CPU where the budget per pixel was counted on fingers.
  • Four multiplications per step. On a 68000, a 16×16 multiply was a luxury instruction. You felt it in the profiler. (There was no profiler. You felt it in your soul.)

Abort. Reboot. Think harder.


Patch #1 — Nuke the trig

For a small angle a, Taylor says:

cos(a) ≈ 1
sin(a) ≈ a

Plug that into the rotation matrix:

| 1   -a |
| a    1 |

The loop becomes:

float nx = x - y*a;
float ny = y + x*a;
x = nx; y = ny;

Zero trig. Two multiplications by a constant a. Progress.

Ship it? Not yet. Those two multiplications still hurt.


Patch #2 — Nuke the multiplications

If a = 1/2^n... multiplications become right bit shifts.
And dropping the temp variables is EZ PZ:

x = x - (y >> n);
y = y + (x >> n);

Zero multiplications. Shifts and adds only.
In 16-bit fixed-point (8.8 format), this is 3-4 cycles per point.
At 8 MHz: tens of thousands of circle points per second.
The plotter can't even keep up.

One ran it.

The circle closed perfectly.

Ship it.


Wait. There's a bug here.

Look at that code again. Really look at it.

x = x - (y >> n);   /* x is modified HERE...         */
y = y + (x >> n);   /* ...NEW x is reused here. OOPS. */

That's not the same as the clean version with a temp variable.
That's an in-place update bug — the classic freshman mistake,
the thing that gets you a raised eyebrow in code review.

And there's worse. Look at the approximation matrix in the maths above:

| 1   -a |     det = 1×1 − (−a)×a = 1 + a²
| a    1 |

Determinant greater than 1. Every step should expand the radius slightly.
After N iterations, the spiral should drift outward. The circle should not close.

And yet. No drift. No spiral. Closed.

How.


POST-MORTEM — what the "bug" actually computes

Let's expand what that broken code actually does, algebraically:

x' = x - y*a
y' = y + x'*a
   = y + (x - y*a)*a
   = y + x*a - y*a²

The implicit transformation matrix is:

|  1      -a   |
|  a    1-a²   |

Determinant:

1×(1−a²) − (−a)×a
= 1 − a² + a²
= 1

Exactly 1.

Not approximately. Not "close enough for graphics work".
Exactly, algebraically, provably 1 — for 'any' value of a.

The "buggy" in-place update doesn't just compensate for the spiral drift.
It perfectly cancels it — the +a² from the approximation error and
the −a² from the in-place reuse cancel each other out, identically.

The bug fixed the bug.


DTFC — final, shipped, still running

/*
** DTFC - Draw The F***ing Circle
**
** Radius r, centered at origin.
** N steps for a full revolution.
** shift = bit precision (e.g. shift=6 means a ≈ 1/64)
**
** No sin(). No cos(). No multiply. No temp variable.
** Just shifts, adds, and one algebraically perfect "mistake".
**
** Determinant = 1. Circle closes. Every time.
*/
int x = r, y = 0;
for (int i = 0; i < N; i++) {
    plot(x, y);
    x = x - (y >> shift);   /* wrong order. keep it. */
    y = y + (x >> shift);   /* new x. intentional.   */
}

Runs on a Z80. Runs on a 6809. Runs on a TMS34010.
Runs on your Arduino right now.
Three lines of logic. Zero trig. Zero multiply.
One preserved determinant hiding in plain sight.


Why this never shipped in a textbook

This trick sits at the junction of:

  • Numerical analysis — linearization of transcendental functions
  • Linear algebra — determinant as area-preservation invariant
  • Hardware archaeology — shift-only fixed-point arithmetic
  • Accidental correctness — the bug that was righter than the fix

It was never written down, to anyone's knowledge.
It lived in the fingertips of engineers at Benson, Schlumberger Graphics, OCE
people who built A0 plotters and raster engines when RAM was rationed
and every cycle had a name.

One colleague — fresh from Sun Microsystems, where he had just taped out
the first hardware triangle rasterizer ever built in silicon
kept Graphics Gems on his desk, beside Knuth's bibles.

This trick deserved a page in it.

It didn't get one.

Consider this that page.


Halt and catch fire

Sometimes the bug is smarter than the programmer.
Sometimes the constraint is the algorithm.
And sometimes, at 8 MHz with 256k of VRAM and a plotter
spooling A0 drawings for architects who will never know,
one accidentally writes something that is more correct
than the correct version.

The circle closed. It always closed.

— Recovered from memory, ~40 years post-silicon. Still compiles. Still works.

P.S. — Yes, it works with floating point too. The algebra doesn't care about your type system.


Tags: #8bit #retrocomputing #graphics #fixedpoint #TMS34010 #68000
#circledrawing #linearlgebra #determinant #GraphicsGems #accidentalgenius