| 3985 | } |
| 3986 | |
| 3987 | void ImPlot3DPlot::SetRange(const ImPlot3DPoint& min, const ImPlot3DPoint& max) { |
| 3988 | Axes[0].SetRange(min.x, max.x); |
| 3989 | Axes[1].SetRange(min.y, max.y); |
| 3990 | Axes[2].SetRange(min.z, max.z); |
| 3991 | } |
| 3992 | |
| 3993 | float ImPlot3DPlot::GetViewScale() const { |
| 3994 | return ImMin(PlotRect.GetWidth(), PlotRect.GetHeight()) / 1.8f * ImPlot3D::GImPlot3D->Style.ViewScaleFactor; |
no outgoing calls
no test coverage detected