starsight 0.3.2

A unified scientific visualization crate for Rust — from zero-config one-liners to GPU-accelerated interactive 3D.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Re-exports of layer-3 marks.
//!
//! `Mark` is the trait every visual element implements; the rest are concrete
//! mark types ready to be added to a [`Figure`](crate::figures::Figure).

pub use crate::components::marks::{
    ArcMark, AreaBaseline, AreaMark, AxisDir, BarMark, BarRenderContext, BoxPlotGroup, BoxPlotMark,
    CandlestickMark, ColormapLegend, ContourMark, ContourMode, DataExtent, ErrorBarMark,
    ErrorBarOrientation, HeatmapMark, HistogramMark, LegendGlyph, LineMark, Mark, MarkExtent, Ohlc,
    Orientation, PieMark, PointMark, PolarBarMark, PolarRectMark, RadarMark, RugMark, StepMark,
    StepPosition, ViolinGroup, ViolinMark, ViolinScale,
};