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

Class Point

rustcv/src/imgproc/drawing.rs:8–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6
7#[derive(Clone, Copy, Debug)]
8pub struct Point {
9 pub x: i32,
10 pub y: i32,
11}
12
13impl Point {
14 pub fn new(x: i32, y: i32) -> Self {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected