MCPcopy Create free account
hub / github.com/donkeyteethUX/iced_plot / CoordinateSystem

Enum CoordinateSystem

src/transform.rs:13–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11/// The source coordinate system consumed by a [`Transform`].
12#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
13pub enum CoordinateSystem {
14 /// Data coordinates: convert the raw value, then apply the axis scale.
15 #[default]
16 Data,
17 /// Axes coordinates, where `0.0` is the low edge of the plot and `1.0` is the high edge.
18 Axes,
19}
20
21#[derive(Debug, Clone, PartialEq, Default)]
22enum TransformOperation {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected