| 3486 | double ImPlot3DPoint::Length() const { return sqrt(x * x + y * y + z * z); } |
| 3487 | |
| 3488 | double ImPlot3DPoint::LengthSquared() const { return x * x + y * y + z * z; } |
| 3489 | |
| 3490 | void ImPlot3DPoint::Normalize() { |
| 3491 | double l = Length(); |
nothing calls this directly
no outgoing calls
no test coverage detected