Garry Pettet

Results 12 comments of Garry Pettet

Epic! Thanks for this! I'll get straight to tinkering. Thanks a lot for Hexi - it's really useful.

In fact I'm sure this is a bug. Looking at the JBox2D Rot.java code: ```java public void getXAxis(Vec2 xAxis) { xAxis.set(c, s); } public void getYAxis(Vec2 yAxis) { yAxis.set(-s, c);...

@spydon: So do you think that mean it's a bug? In `Forge2D/fixture.dart` there is this code: ```dart renderCenter.setFrom(Transform.mulVec2(xf, circle.position)); final radius = circle.radius; xf.q.getXAxis(renderAxis); ``` (it's actually the only code...

Thank you for clearing this up. I'm going to use your suggested fix for the `getXAxis()` and `getYAxis()` method calls. I'll leave this issue open though so the team can...

Hmm, looking through the source of the examples it would appear that the lifetime of a particle is managed through Flame and its components rather than through the Forge2D library....

Yeah I don't think the particles are getting destroyed in that example. Since I'm writing a port (not in Dart), what I've done (and it seems to work fine) is...

@ruby0x1 How is progress going on this? I'm considering writing a dedicated IDE for Wren but am hesitant to start without debugger support.

> Just an update on where this is at since I've been working on it: > > > The biggest blocker on it is that it was/is tied to my...

@simulanics Can you please create a new branch with these changes Matthew if you're able to? I'm about to update CEF for API 2.0 but then I noticed this issue...

Thanks for the file Matthew. Sorry to hear you've been through a tough time. There seems to be a single compilation error in `TextLine.Paint()` (line 118): ```xojo g.DrawText xt, x,...