Re-add PartialEq removed in #230 (#232)

This commit is contained in:
0HyperCube
2021-07-04 14:27:09 -07:00
committed by Keavon Chambers
parent f808ee5a94
commit b2064c7bfd
8 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ use std::fmt::Write;
use super::{style, LayerData};
#[derive(Debug, Clone)]
#[derive(Debug, Clone, PartialEq)]
pub struct PolyLine {
points: Vec<glam::DVec2>,
}