1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//! # WordCloud
//!
//! Generate word clouds with Rust.
//!
//! <img src="../../../doc/img/front.png" height="600" width="800" />
//!
//! This work is distributed under the [MIT license](../../..//LICENSE).
//!
//! The fonts are distributed under the [Apache license](../../..//assets/fonts/LICENSE.txt).

mod cloud_builder;

pub mod collision;
pub mod colors;
pub mod geometry;
pub mod placement;
pub mod visualization;
pub mod words;

pub use cloud_builder::CloudBuilder;