Update core documentation to match recent C# changes

Also a few minor API changes like adding AABB.abs()

Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
This commit is contained in:
Aaron Franke
2020-07-21 14:07:00 -04:00
parent 41d6c96590
commit 83e324d670
26 changed files with 253 additions and 236 deletions

View File

@@ -52,10 +52,6 @@ Plane Plane::normalized() const {
return p;
}
Vector3 Plane::get_any_point() const {
return get_normal() * d;
}
Vector3 Plane::get_any_perpendicular_normal() const {
static const Vector3 p1 = Vector3(1, 0, 0);
static const Vector3 p2 = Vector3(0, 1, 0);