pmmp / Math

PHP library containing math related code used in PocketMine-MP
GNU Lesser General Public License v3.0
41 stars 20 forks source link

Immutable AxisAlignedBB, Vector3 etc #88

Open dktapps opened 1 year ago

dktapps commented 1 year ago

No one expects the manipulation methods of AxisAlignedBB to alter the AABB directly. Allowing this is also a headache.

We already don't use Vector3 as mutable since PM 4.0.

In PHP 8.1, it's possible to use readonly to make all of the properties immutable. In 8.2, we'll be able to make whole classes readonly, but that also prevents inheritance by non-readonly classes.