Contents
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
use super::{Drawable, PointCollection};
use crate::style::{Color, ShapeStyle, SizeDesc};
use plotters_backend::{BackendCoord, DrawingBackend, DrawingErrorKind};
/**
An element representing a single pixel.
See [`crate::element::EmptyElement`] for more information and examples.
*/
pub struct Pixel<Coord> {
pos: Coord,
style: ShapeStyle,
}
impl<Coord> Pixel<Coord> {
/**
Creates a new pixel.
See [`crate::element::EmptyElement`] for more information and examples.
*/
pub fn new<P: Into<Coord>, S: Into<ShapeStyle>>(pos: P, style: S) -> Self {
Self {
pos: pos.into(),
style: style.into(),
}
}
}
impl<'a, Coord> PointCollection<'a, Coord> for &'a Pixel<Coord> {
type Point = &'a Coord;
type IntoIter = std::iter::Once<&'a Coord>;
fn point_iter(self) -> Self::IntoIter {
std::iter::once(&self.pos)
}
}
impl<Coord, DB: DrawingBackend> Drawable<DB> for Pixel<Coord> {
fn draw<I: Iterator<Item = BackendCoord>>(
&self,
mut points: I,
backend: &mut DB,
_: (u32, u32),
) -> Result<(), DrawingErrorKind<DB::ErrorType>> {
if let Some((x, y)) = points.next() {
return backend.draw_pixel((x, y), self.style.color.to_backend_color());
}
Ok(())
}
}
#[cfg(test)]
#[test]
fn test_pixel_element() {
use crate::prelude::*;
let da = crate::create_mocked_drawing_area(300, 300, |m| {
m.check_draw_pixel(|c, (x, y)| {
assert_eq!(x, 150);
assert_eq!(y, 152);
assert_eq!(c, RED.to_rgba());
});
m.drop_check(|b| {
assert_eq!(b.num_draw_pixel_call, 1);
assert_eq!(b.draw_count, 1);
});
});
da.draw(&Pixel::new((150, 152), &RED))
.expect("Drawing Failure");
}
/// This is a deprecated type. Please use new name [`PathElement`] instead.
#[deprecated(note = "Use new name PathElement instead")]
pub type Path<Coord> = PathElement<Coord>;
/// An element of a series of connected lines
pub struct PathElement<Coord> {
points: Vec<Coord>,
style: ShapeStyle,
}
impl<Coord> PathElement<Coord> {
/// Create a new path
/// - `points`: The iterator of the points
/// - `style`: The shape style
/// - returns the created element
pub fn new<P: Into<Vec<Coord>>, S: Into<ShapeStyle>>(points: P, style: S) -> Self {
Self {
points: points.into(),
style: style.into(),
}
}
}
impl<'a, Coord> PointCollection<'a, Coord> for &'a PathElement<Coord> {
type Point = &'a Coord;
type IntoIter = &'a [Coord];
fn point_iter(self) -> &'a [Coord] {
&self.points
}
}
impl<Coord, DB: DrawingBackend> Drawable<DB> for PathElement<Coord> {
fn draw<I: Iterator<Item = BackendCoord>>(
&self,
points: I,
backend: &mut DB,
_: (u32, u32),
) -> Result<(), DrawingErrorKind<DB::ErrorType>> {
backend.draw_path(points, &self.style)
}
}
#[cfg(test)]
#[test]
fn test_path_element() {
use crate::prelude::*;
let da = crate::create_mocked_drawing_area(300, 300, |m| {
m.check_draw_path(|c, s, path| {
assert_eq!(c, BLUE.to_rgba());
assert_eq!(s, 5);
assert_eq!(path, vec![(100, 101), (105, 107), (150, 157)]);
});
m.drop_check(|b| {
assert_eq!(b.num_draw_path_call, 1);
assert_eq!(b.draw_count, 1);
});
});
da.draw(&PathElement::new(
vec![(100, 101), (105, 107), (150, 157)],
Into::<ShapeStyle>::into(&BLUE).stroke_width(5),
))
.expect("Drawing Failure");
}
/// A rectangle element
pub struct Rectangle<Coord> {
points: [Coord; 2],
style: ShapeStyle,
margin: (u32, u32, u32, u32),
}
impl<Coord> Rectangle<Coord> {
/// Create a new path
/// - `points`: The left upper and right lower corner of the rectangle
/// - `style`: The shape style
/// - returns the created element
pub fn new<S: Into<ShapeStyle>>(points: [Coord; 2], style: S) -> Self {
Self {
points,
style: style.into(),
margin: (0, 0, 0, 0),
}
}
/// Set the margin of the rectangle
/// - `t`: The top margin
/// - `b`: The bottom margin
/// - `l`: The left margin
/// - `r`: The right margin
pub fn set_margin(&mut self, t: u32, b: u32, l: u32, r: u32) -> &mut Self {
self.margin = (t, b, l, r);
self
}
}
impl<'a, Coord> PointCollection<'a, Coord> for &'a Rectangle<Coord> {
type Point = &'a Coord;
type IntoIter = &'a [Coord];
fn point_iter(self) -> &'a [Coord] {
&self.points
}
}
impl<Coord, DB: DrawingBackend> Drawable<DB> for Rectangle<Coord> {
fn draw<I: Iterator<Item = BackendCoord>>(
&self,
mut points: I,
backend: &mut DB,
_: (u32, u32),
) -> Result<(), DrawingErrorKind<DB::ErrorType>> {
match (points.next(), points.next()) {
(Some(a), Some(b)) => {
let (mut a, mut b) = ((a.0.min(b.0), a.1.min(b.1)), (a.0.max(b.0), a.1.max(b.1)));
a.1 += self.margin.0 as i32;
b.1 -= self.margin.1 as i32;
a.0 += self.margin.2 as i32;
b.0 -= self.margin.3 as i32;
backend.draw_rect(a, b, &self.style, self.style.filled)
}
_ => Ok(()),
}
}
}
#[cfg(test)]
#[test]
fn test_rect_element() {
use crate::prelude::*;
{
let da = crate::create_mocked_drawing_area(300, 300, |m| {
m.check_draw_rect(|c, s, f, u, d| {
assert_eq!(c, BLUE.to_rgba());
assert_eq!(f, false);
assert_eq!(s, 5);
assert_eq!([u, d], [(100, 101), (105, 107)]);
});
m.drop_check(|b| {
assert_eq!(b.num_draw_rect_call, 1);
assert_eq!(b.draw_count, 1);
});
});
da.draw(&Rectangle::new(
[(100, 101), (105, 107)],
Color::stroke_width(&BLUE, 5),
))
.expect("Drawing Failure");
}
{
let da = crate::create_mocked_drawing_area(300, 300, |m| {
m.check_draw_rect(|c, _, f, u, d| {
assert_eq!(c, BLUE.to_rgba());
assert_eq!(f, true);
assert_eq!([u, d], [(100, 101), (105, 107)]);
});
m.drop_check(|b| {
assert_eq!(b.num_draw_rect_call, 1);
assert_eq!(b.draw_count, 1);
});
});
da.draw(&Rectangle::new([(100, 101), (105, 107)], BLUE.filled()))
.expect("Drawing Failure");
}
}
/// A circle element
pub struct Circle<Coord, Size: SizeDesc> {
center: Coord,
size: Size,
style: ShapeStyle,
}
impl<Coord, Size: SizeDesc> Circle<Coord, Size> {
/// Create a new circle element
/// - `coord` The center of the circle
/// - `size` The radius of the circle
/// - `style` The style of the circle
/// - Return: The newly created circle element
pub fn new<S: Into<ShapeStyle>>(coord: Coord, size: Size, style: S) -> Self {
Self {
center: coord,
size,
style: style.into(),
}
}
}
impl<'a, Coord, Size: SizeDesc> PointCollection<'a, Coord> for &'a Circle<Coord, Size> {
type Point = &'a Coord;
type IntoIter = std::iter::Once<&'a Coord>;
fn point_iter(self) -> std::iter::Once<&'a Coord> {
std::iter::once(&self.center)
}
}
impl<Coord, DB: DrawingBackend, Size: SizeDesc> Drawable<DB> for Circle<Coord, Size> {
fn draw<I: Iterator<Item = BackendCoord>>(
&self,
mut points: I,
backend: &mut DB,
ps: (u32, u32),
) -> Result<(), DrawingErrorKind<DB::ErrorType>> {
if let Some((x, y)) = points.next() {
let size = self.size.in_pixels(&ps).max(0) as u32;
return backend.draw_circle((x, y), size, &self.style, self.style.filled);
}
Ok(())
}
}
#[cfg(test)]
#[test]
fn test_circle_element() {
use crate::prelude::*;
let da = crate::create_mocked_drawing_area(300, 300, |m| {
m.check_draw_circle(|c, _, f, s, r| {
assert_eq!(c, BLUE.to_rgba());
assert_eq!(f, false);
assert_eq!(s, (150, 151));
assert_eq!(r, 20);
});
m.drop_check(|b| {
assert_eq!(b.num_draw_circle_call, 1);
assert_eq!(b.draw_count, 1);
});
});
da.draw(&Circle::new((150, 151), 20, &BLUE))
.expect("Drawing Failure");
}
/// An element of a filled polygon
pub struct Polygon<Coord> {
points: Vec<Coord>,
style: ShapeStyle,
}
impl<Coord> Polygon<Coord> {
/// Create a new polygon
/// - `points`: The iterator of the points
/// - `style`: The shape style
/// - returns the created element
pub fn new<P: Into<Vec<Coord>>, S: Into<ShapeStyle>>(points: P, style: S) -> Self {
Self {
points: points.into(),
style: style.into(),
}
}
}
impl<'a, Coord> PointCollection<'a, Coord> for &'a Polygon<Coord> {
type Point = &'a Coord;
type IntoIter = &'a [Coord];
fn point_iter(self) -> &'a [Coord] {
&self.points
}
}
impl<Coord, DB: DrawingBackend> Drawable<DB> for Polygon<Coord> {
fn draw<I: Iterator<Item = BackendCoord>>(
&self,
points: I,
backend: &mut DB,
_: (u32, u32),
) -> Result<(), DrawingErrorKind<DB::ErrorType>> {
backend.fill_polygon(points, &self.style.color.to_backend_color())
}
}
#[cfg(test)]
#[test]
fn test_polygon_element() {
use crate::prelude::*;
let points = vec![(100, 100), (50, 500), (300, 400), (200, 300), (550, 200)];
let expected_points = points.clone();
let da = crate::create_mocked_drawing_area(800, 800, |m| {
m.check_fill_polygon(move |c, p| {
assert_eq!(c, BLUE.to_rgba());
assert_eq!(expected_points.len(), p.len());
assert_eq!(expected_points, p);
});
m.drop_check(|b| {
assert_eq!(b.num_fill_polygon_call, 1);
assert_eq!(b.draw_count, 1);
});
});
da.draw(&Polygon::new(points.clone(), &BLUE))
.expect("Drawing Failure");
}