plotlars-core 0.12.1

Core types and traits for plotlars
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::components::{Rgb, Shape};

#[derive(Clone)]
#[doc(hidden)]
pub struct MarkerIR {
    pub opacity: Option<f64>,
    pub size: Option<usize>,
    pub color: Option<Rgb>,
    pub shape: Option<Shape>,
}