tianwen

Results 4 issues of tianwen

```rust /// Projects a point from world co-ordinates to camera co-ordinates. pub fn project(&self, point: Vec2) -> Vec2 { let mut proj = Vec2::new( (point.x - self.viewport_width / 2.0) /...

Type: Bug
Area: Documentation
Good First Issue

- Fix IPoolObject missing

Usually people perfer to write code in one file in odin. Region folding makes code more clearly. When someone reads the code, this lets them know what each piece is....

We have `#region #endregion/ //#region //#endregion` for cshape user to better organizing code. I feel that is meaningful in DOD language when people want to write many codes in one...

enhancement