alpha
Login
or
Join now
gwen.works
/
shapemaker
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
🎨 Format code
author
gwennlbh
committer
github-actions[bot]
date
7 months ago
(Nov 9, 2025, 8:53 PM UTC)
commit
acd9339e
acd9339eb9a0b1e20d370c5e82f41594768086dc
parent
200846ea
200846ea39a242ae8abba8c622f3b6bf1e709a7b
+2
-4
2 changed files
Expand all
Collapse all
Unified
Split
examples
schedule-hell
src
main.rs
src
wasm
mod.rs
-2
examples/schedule-hell/src/main.rs
Reviewed
···
6
6
use shapemaker::{ui::Log, *};
7
7
use std::{fs, path::PathBuf, time::Duration};
8
8
9
9
-
10
10
-
11
9
#[tokio::main]
12
10
pub async fn main() {
13
11
let canvas = Canvas::new(16, 9);
+2
-2
src/wasm/mod.rs
Reviewed
···
1
1
pub mod layer;
2
2
+
pub mod point;
2
3
pub mod transform;
3
4
pub mod web;
4
4
-
pub mod point;
5
5
6
6
pub use layer::*;
7
7
+
pub use point::*;
7
8
pub use transform::*;
8
9
pub use web::*;
9
9
-
pub use point::*;