use crate::*;
mod convert;
#[cfg(feature = "wolfram-expr")]
mod wolfram;
use std::fmt::{Debug, Formatter};
#[allow(unused_variables)]
pub trait GraphicsStyle {
fn skip(&self) -> bool {
false
}
fn change_style(&self, state: &mut StyleContext);
}
impl Debug for dyn GraphicsStyle {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write!(f, "GraphicsStyle")
}
}