Ben Morris

Results 17 issues of Ben Morris

Adds type safety around working with degrees/radians, and eliminates the need to convert explicitly via `* MathUtil.RAD` etc. ```haxe var degs:Degrees = 180; var rads:Radians = degs; trace(rads); // "-1.0*PI"...

breaking change

Edit: 4.0 has been released, but leaving this here for the record

question/discussion

It seems that scaling is distorted when an image is rotated. This works correctly with renderMeshes = true, and incorrectly when renderMeshes = false. For example, here's a slime which...

Currently if you call if_config and it returns an error subsequent calls will immediately return 0 and won't repeat any initialization that failed. This change keeps track of what's been...

Currently, either tabs or spaces must be used to indent, not both. It's common to use spaces after indenting for alignment purposes, for example: https://github.com/HaxePunk/HaxePunk/blob/0cc6d89b58f9c13ee1eecd9bff8aea78b1d9fd56/com/haxepunk/Preloader.hx#L22 Could add an option to...

enhancement

* Precision and type are mangled together: `mediumpfloat` should be `mediump float` * Typo: "low" should be "lowp"

Thanks for plex! Would it be feasible to support multiple entry points that reuse the same grammar? As an example, I have something like: ``` statement: Statement { expression[e] TokenSemicolon...

# Suggestion I'm hoping to revisit https://github.com/microsoft/TypeScript/issues/16478 but narrowed to *only namespaces*, not modules. I agree with the reasoning for not considering this features for ES modules, but I think...

The output.ascii_only option escapes multibyte characters in strings and regex according to the documentation - and in practice, also variable names, so one might reasonably expect that with this option,...

good first issue