Rename Basis get_axis to get_column, remove redundant methods

This commit is contained in:
Aaron Franke 2022-05-03 07:50:35 -05:00
parent d5d86cb26e
commit fa7a7795f0
No known key found for this signature in database
GPG key ID: 40A1750B977E56BF
50 changed files with 285 additions and 305 deletions

View file

@ -577,7 +577,7 @@ Plane XRAnchor3D::get_plane() const {
Vector3 location = get_position();
Basis orientation = get_transform().basis;
Plane plane(orientation.get_axis(1).normalized(), location);
Plane plane(orientation.get_column(1).normalized(), location);
return plane;
}