51e193d28b
- Remove newline caching - limit petal sizes - make public facing api use points only - fix iterators (chunk & line)
9 lines
82 B
C
9 lines
82 B
C
#pragma once
|
|
|
|
#include "pch.h"
|
|
|
|
struct Point {
|
|
uint32_t row;
|
|
uint32_t col;
|
|
};
|