| 3488 | double ImPlot3DPoint::LengthSquared() const { return x * x + y * y + z * z; } |
| 3489 | |
| 3490 | void ImPlot3DPoint::Normalize() { |
| 3491 | double l = Length(); |
| 3492 | x /= l; |
| 3493 | y /= l; |
| 3494 | z /= l; |
| 3495 | } |
| 3496 | |
| 3497 | ImPlot3DPoint ImPlot3DPoint::Normalized() const { |
| 3498 | double l = Length(); |
no outgoing calls
no test coverage detected