dear-implot3d 0.14.1

High-level Rust bindings to ImPlot3D with dear-imgui-rs integration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(non_snake_case)]

use crate::{imgui_sys, sys};

unsafe extern "C" {
    pub fn ImPlot3D_PlotToPixels_double(x: f64, y: f64, z: f64) -> imgui_sys::ImVec2_c;
    pub fn ImPlot3D_GetPlotRectPos() -> imgui_sys::ImVec2_c;
    pub fn ImPlot3D_GetPlotRectSize() -> imgui_sys::ImVec2_c;
    pub fn ImPlot3D_NextColormapColor() -> imgui_sys::ImVec4_c;
    pub fn ImPlot3D_GetColormapColor(
        idx: ::std::os::raw::c_int,
        cmap: sys::ImPlot3DColormap,
    ) -> imgui_sys::ImVec4_c;
}