ros2_interfaces_rolling/vision_msgs/msg/
point2_d.rs

1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
4pub struct Point2D {
5    pub x: f64,
6    pub y: f64,
7}
8
9impl Default for Point2D {
10    fn default() -> Self {
11        Point2D {
12            x: 0.0,
13            y: 0.0,
14        }
15    }
16}
17
18impl ros2_client::Message for Point2D {}