fix(plot): expose VLine and HLine (#422)

This commit is contained in:
St John Giddy 2021-05-20 19:56:45 +02:00 committed by GitHub
parent 67c6002578
commit ac82cc7be3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,7 @@ mod transform;
use std::collections::{BTreeMap, HashSet}; use std::collections::{BTreeMap, HashSet};
pub use items::{Curve, Value}; pub use items::{Curve, Value};
use items::{HLine, VLine}; pub use items::{HLine, VLine};
use transform::{Bounds, ScreenTransform}; use transform::{Bounds, ScreenTransform};
use crate::*; use crate::*;