starsight 0.1.1

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
//! Prelude: a single glob import for the most-used types.
//!
//! ```no_run
//! use starsight::prelude::*;
//! ```

pub use crate::background::errors::{Result, StarsightError};
pub use crate::background::primitives::{Color, ColorAlpha, Point, Rect, Size, Transform, Vec2};
pub use crate::common::Figure;
pub use crate::components::marks::{LineMark, Mark, PointMark};
pub use crate::plot;