MCPcopy Create free account
hub / github.com/RustCV/RustCV / Rect

Class Rect

rustcv/src/imgproc/drawing.rs:20–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18
19#[derive(Clone, Copy, Debug)]
20pub struct Rect {
21 pub x: i32,
22 pub y: i32,
23 pub width: i32,
24 pub height: i32,
25}
26
27impl Rect {
28 pub fn new(x: i32, y: i32, width: i32, height: i32) -> Self {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected