# Placers ## From center ```rust let placer = FromCenterPlacer::new( Rectangle::new(0, 0, 800, 600), 10 ); ``` ![image](./img/placers/from_center.png) ## Spiral ```rust let placer = SpiralPlacer::new( Rectangle::new(0, 0, 800, 600), ); ``` ![image](./img/placers/spiral.png) ## Horizontal ```rust let placer = HorizontalPlacer::new( Rectangle::new(0, 0, 800, 600), 10 ); ``` ![image](./img/placers/horiz.png)