Jonathan Chan Kwan Yin
Jonathan Chan Kwan Yin
This pull request optimizes unique-reference calls to Vector3, which minimizes object allocations for long call chains like this: ```php $vector ->add(1, 2, 3) ->multiply(3) ->cross($otherVector) ->divide(4) ``` For the above...
`start-pocketmine --debug.level=2` does not enable debug logging.
Create a separate image dedicated for linting plugins, with plugin dependency detection from plugin.yml and downloaded via Poggit (can be configured).
Instead of forcing `bin/php7`, make it an option, especially for people who want to install it in /usr, /usr/local, $HOME/.local, etc.
The current adverse possession policy irreversibly transfers ownership of a plugin after a short period of the author's inactivity. This may be unacceptable to some people. It is proposed that,...
The original algorithm may cause holes when the circle is large discussed in https://github.com/SOF3/plotters-ratatui-backend/pull/2/files#r1461295810 The test case changes by one pixel, but the output was very approximate anyway
BREAKING CHANGE: `Circle` now has a fill field. Set as false for original behavior. Includes changes from https://github.com/ratatui-org/ratatui/pull/917 to reuse the step_points util
BREAKING CHANGE: `Rectangle` now has a `fill` field. Set as `false` for original behavior. Includes changes from #917 to reuse the `step_points` util
I'd like to use this in my integration tests. I need to programmatically handle the case where the player receives a message, so that I can check it against expected...