1 2 3 4 5 6 7 8 9
use serde::{Deserialize, Serialize}; /// [Figma documentation](https://www.figma.com/developers/api#vector-type) #[derive(Debug, Deserialize, Serialize)] #[typeshare::typeshare] pub struct Vector { pub x: f64, pub y: f64, }