Remove unused DocumentIsDirty

This commit is contained in:
Keavon Chambers
2024-01-15 02:51:40 -08:00
parent 8df59be1d5
commit d602603d46
20 changed files with 15 additions and 125 deletions
@@ -323,7 +323,7 @@ impl SnapCandidatePoint {
pub fn handle(document_point: DVec2) -> Self {
Self::new_source(document_point, SnapSource::Geometry(GeometrySnapSource::Sharp))
}
pub fn handle_neighbours(document_point: DVec2, neighbours: impl Into<Vec<DVec2>>) -> Self {
pub fn handle_neighbors(document_point: DVec2, neighbours: impl Into<Vec<DVec2>>) -> Self {
let mut point = Self::new_source(document_point, SnapSource::Geometry(GeometrySnapSource::Sharp));
point.neighbors = neighbours.into();
point