Apply maths macros and type changes ahead of HAL
This commit is contained in:
parent
0c616700f3
commit
6c45d0fd81
26 changed files with 181 additions and 166 deletions
|
|
@ -63,7 +63,7 @@ vector_3 vector_3::get_normal() {
|
|||
return normalized;
|
||||
}
|
||||
|
||||
float vector_3::get_length() { return sqrt(sq(x) + sq(y) + sq(z)); }
|
||||
float vector_3::get_length() { return SQRT(sq(x) + sq(y) + sq(z)); }
|
||||
|
||||
void vector_3::normalize() {
|
||||
const float inv_length = 1.0 / get_length();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue