Struct rasterize::ActiveEdgeRasterizer [−][src]
pub struct ActiveEdgeRasterizer { /* fields omitted */ }
Expand description
Active-Edge rasterizer
This method is based on the data stracture Edge-Table which keeps all lines ordered by lower y coordinate, and then scanning over all pixels line by line, once lower pixel of a line is reached line is activated and put into Active-Edge-Table, and later deactivated once once scan line convers point with the highest y coordinate.
Reference: Computer graphics principles and practice (by Foley) 3.6 Filling Polygons.
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ActiveEdgeRasterizer
impl Send for ActiveEdgeRasterizer
impl Sync for ActiveEdgeRasterizer
impl Unpin for ActiveEdgeRasterizer
impl UnwindSafe for ActiveEdgeRasterizer
Blanket Implementations
Mutably borrows from an owned value. Read more