Remove set_axis and get_axis methods from Vector2/2i/3/3i/4/4i

This commit is contained in:
Aaron Franke
2022-09-19 12:49:18 -05:00
parent bcf754d735
commit fd8bd27657
12 changed files with 8 additions and 76 deletions

View File

@ -68,9 +68,6 @@ struct _NO_DISCARD_ Vector3 {
return coord[p_axis];
}
void set_axis(const int p_axis, const real_t p_value);
real_t get_axis(const int p_axis) const;
_FORCE_INLINE_ void set_all(const real_t p_value) {
x = y = z = p_value;
}