polyscope-structures 0.5.10

Structure implementations for polyscope-rs: meshes, point clouds, curves, volumes
Documentation
//! Floating quantities — screen-space data not attached to any structure.
//!
//! Floating quantities include images (scalar, color, depth-composited)
//! that are displayed in the UI as standalone visualizations.

mod color_image;
mod render_image;
mod scalar_image;

pub use color_image::*;
pub use render_image::*;
pub use scalar_image::*;

/// Image origin convention.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub enum ImageOrigin {
    /// Image row 0 is the top row (standard screen convention).
    #[default]
    UpperLeft,
    /// Image row 0 is the bottom row (OpenGL convention).
    LowerLeft,
}