Jan Žák
Jan Žák
+1 Just a note, if.bind and repeat.for are not allowed on the same element, because their order is undefined. They need to be nested.
Static type checking of templates would move Aurelia projects to a completely different level of correctness. Most likely connected with TS interfaces/classes.
@atsu85 Good idea. Unfortunately there is an official exception for this: view model used for aurelia-dialog. https://github.com/aurelia/dialog#using-the-plugin
Another idea: If `--strictNullCheck` is enabled, it could also check if all required bindable attributes are passed, meaning only those explicitly typed with `X | undefined` or with a default...
More ideas: - `value.bind="..."` binding syntax should be required, only string attributes should allow passing value with `value="..."` - If strictNullChecks is enabled, only nullable attributes (`@bindable value: ... |...
Pixi already contains SDF text support, see https://github.com/pixijs/pixijs/pull/7781
Indeed, code for calculating AABB is handling scaling, but missing rotation at: https://github.com/davidfig/pixi-cull/blob/master/code/simple.js#L167-L171 https://github.com/davidfig/pixi-cull/blob/master/code/spatial-hash.js#L206-L211 @davidfig Would adding code for handling rotation of all objects be feasible for performance? Such as...
I got a working code with rotation, but it's missing other transformations. ``` const rotPivot = new PIXI.Point(object.x + object.pivot.x, object.y + object.pivot.y); const rotSin = Math.sin(object.rotation); const rotCos =...
Show multiple messages, with their own timeouts to hide #33
Yes, I use `+lon_wrap` currently, but it requires a separate call to gdalwarp with a non-standard projection string and a temporary file. I like how the new GRIB Split&Swap allows...