Major changes to api and structure.

- Remove newline caching
- limit petal sizes
- make public facing api use points only
- fix iterators (chunk & line)
This commit is contained in:
2026-08-02 11:07:04 +01:00
parent 89b24a7488
commit 51e193d28b
16 changed files with 355 additions and 422 deletions
+8
View File
@@ -0,0 +1,8 @@
#pragma once
#include "pch.h"
struct Point {
uint32_t row;
uint32_t col;
};