pub trait PlacementStrategy {
// Required method
fn find_next_place(
&mut self,
start_pos: Option<Vector>,
r: &Rectangle,
) -> Option<Vector>;
}Expand description
Define a word placement strategy.
pub trait PlacementStrategy {
// Required method
fn find_next_place(
&mut self,
start_pos: Option<Vector>,
r: &Rectangle,
) -> Option<Vector>;
}Define a word placement strategy.