use super::RenderHelper;
use crate::{
canvas::rough::{geometry::line_length, Line, Op, OpSet, RoughOptions},
Point,
};
pub struct ZigZagFiller;
impl ZigZagFiller {
fn fill_polygon(&self, points: Vec<Point<f64>>, options: &RoughOptions) -> OpSet {
unimplemented!()
}
}