| 161 | } |
| 162 | |
| 163 | float OvMaths::FVector3::Length(const FVector3& p_target) |
| 164 | { |
| 165 | return std::sqrt(p_target.x * p_target.x + p_target.y * p_target.y + p_target.z * p_target.z); |
| 166 | } |
| 167 | |
| 168 | float OvMaths::FVector3::Dot(const FVector3& p_left, const FVector3& p_right) |
| 169 | { |
no outgoing calls
no test coverage detected