Skip to content

Instantly share code, notes, and snippets.

@kikitte
kikitte / fill_poly_v2i_n.c
Created May 24, 2022 01:19 — forked from ideasman42/fill_poly_v2i_n.c
Raster poly-filling by Darel Rex Finley, optimized by Campbell Barton.
/* C99, public domain licensed */
#include <limits.h>
#include <stdbool.h>
#include <math.h>
/* utilities */
#define SWAP(type, a, b) do { \
type sw_ap; \