Merge pull request #2370 from hannobraun/arc

Derive `Debug` for `Arc`
This commit is contained in:
Hanno Braun 2024-06-05 21:53:19 +02:00 committed by GitHub
commit 58f04c15a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,6 +3,7 @@ use num_traits::Float;
use crate::{Point, Scalar, Vector};
/// Calculated geometry that is useful when dealing with an arc
#[derive(Debug)]
pub struct Arc {
/// Center of the circle the arc is constructed on
pub center: Point<2>,