https://github.com/iainwinter/lith
fastest way to make a graphical app in c++
https://github.com/iainwinter/lith
Last synced: 8 months ago
JSON representation
fastest way to make a graphical app in c++
- Host: GitHub
- URL: https://github.com/iainwinter/lith
- Owner: IainWinter
- License: mit
- Created: 2023-12-14T04:54:56.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-15T05:31:36.000Z (over 1 year ago)
- Last Synced: 2024-12-27T08:08:36.191Z (10 months ago)
- Language: C++
- Size: 1.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lith
This project is an attempt to recreate the processing API in C++.
## Framework
The framework is a set of tools which provide a rendering, audio, and math api.
## Runtime
The runtime facilitates the creation and execution of sketches.
## The default sketch
When creating a new project, the runtime makes this skeleton.
```C++
#include "lith/sketch.h"void setup() {
title("Welcome to lith");
size(480, 480);
}void draw() {
background(23);
stroke(245);
line(width/2, height/2, mouseX, mouseY);
}
```