/apps/examples/circle-raster: simple code for grid-centered circle rasterization

This commit is contained in:
veclavtalica
2025-01-24 23:26:32 +03:00
parent cb5f207761
commit 37cd8cf2cf
4 changed files with 107 additions and 0 deletions

View File

@ -0,0 +1,11 @@
#ifndef STATE_H
#define STATE_H
#include "twn_game_api.h"
struct state {
float r;
};
#endif