Convert a position in the plot's coordinate system to pixels
| 1216 | |
| 1217 | // Convert a position in the plot's coordinate system to pixels |
| 1218 | ImVec2 PlotToPixels(const ImPlot3DPlot& plot, const ImPlot3DPoint& point) { return NDCToPixels(plot, PlotToNDC(plot, point)); } |
| 1219 | |
| 1220 | // Function to compute the box corners in pixel space |
| 1221 | void ComputeBoxCornersPix(const ImPlot3DPlot& plot, ImVec2* corners_pix, const ImPlot3DPoint* corners) { |
no test coverage detected