add road map

This commit is contained in:
shenjack 2023-03-25 20:41:08 +08:00
parent ede112df8b
commit d50f6ddf8a
3 changed files with 27 additions and 0 deletions

View File

@ -22,3 +22,21 @@ pyglet_rs.patch_sprite()
import pyglet import pyglet
... ...
``` ```
## how to build
```powershell
cd src
./build.ps1
```
## roadmap
- [ ] `pyglet.sprite.Sprite` patch (doing)
- [ ] `pyglet.math.Vec2` patch
- [ ] `pyglet.math.Vec3` patch
- [ ] `pyglet.math.Vec4` patch
- [ ] `pyglet.math.Mat3(tuple)` patch
- [ ] `pyglet.math.Mat4(tuple)` patch

View File

@ -6,6 +6,7 @@
* ------------------------------- * -------------------------------
*/ */
mod math;
mod sprite; mod sprite;
use pyo3::prelude::*; use pyo3::prelude::*;

View File

@ -0,0 +1,8 @@
/*
* -------------------------------
* Difficult Rocket
* Copyright © 2020-2023 by shenjackyuanjie 3695888@qq.com
* All rights reserved
* -------------------------------
*/