Brandon Smith

Results 9 issues of Brandon Smith

It would be awesome to have TypeScript declarations available. I don't know if these would have to be created manually or if they could somehow be scraped from the C++...

I've been trying to figure out how exactly World.step() works. I've read the documentation and multiple examples. Here's my use case: ```javascript update(timeDelta) { this.cannonWorld.step(1 / 60, timeDelta, 10); }...

It would be a huge help for the library to have TypeScript declarations. I don't know how actively the project is still being developed, and wether it would be best...

What is RigidBody_X? The comment at the top is a duplicate of that on RigidBody, so it's unclear why there are two.

This project seems pretty dead, but I don't see why there isn't any community will to work on it. Flow-runtime is the only reason my company is stuck on Flow...

question

I just recently integrated this library into a project, before realizing it doesn't have support for heightmaps. I tried hacking something together using convex hulls, but any version of it...

enhancement

The installation instructions refer to locating `tools.jar`, but it appears to have been removed in JDK 11: https://stackoverflow.com/questions/53707666/how-to-get-tools-jar-for-openjdk-11-on-windows

Nom v7.1.1 ```rust fn whitespace(i: &str) -> IResult { take_while(move |c| c == ' ')(i) } #[test] fn demonstration() { println!("{:?}", separated_list0(whitespace, tag("abc"))("abc")); } ``` ```rust Err(Error(VerboseError { errors: [("",...

```rust #[derive(EnumVariantType)] enum Foo { | ^^ unused parameter | = help: consider removing `'a`, referring to it in a field, or using a marker such as `PhantomData` ``` Seen...