summaryrefslogtreecommitdiff
path: root/core/math/vector3.h
diff options
context:
space:
mode:
authorAaron Franke <arnfranke@yahoo.com>2022-09-19 12:49:18 -0500
committerAaron Franke <arnfranke@yahoo.com>2022-09-19 15:08:50 -0500
commitfd8bd276579faa02f678c3ff61a5ef8da615bfcd (patch)
tree1de061f5df5bd1a1468726cfa0afc8c436026bd3 /core/math/vector3.h
parentbcf754d735249a779469839455d925cf42b48057 (diff)
Remove set_axis and get_axis methods from Vector2/2i/3/3i/4/4i
Diffstat (limited to 'core/math/vector3.h')
-rw-r--r--core/math/vector3.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/core/math/vector3.h b/core/math/vector3.h
index 3944afa92e..cde7cb2993 100644
--- a/core/math/vector3.h
+++ b/core/math/vector3.h
@@ -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;
}