pub struct SubPath {
pub points: Vec<(f32, f32)>,
pub closed: bool,
}Expand description
パスを構成する副パス(連続した折れ線)。
Fields§
§points: Vec<(f32, f32)>折れ線の頂点(変換適用済みのデバイス座標)。
closed: boolclosePath() で閉じられたか。
Trait Implementations§
impl StructuralPartialEq for SubPath
Auto Trait Implementations§
impl Freeze for SubPath
impl RefUnwindSafe for SubPath
impl Send for SubPath
impl Sync for SubPath
impl Unpin for SubPath
impl UnsafeUnpin for SubPath
impl UnwindSafe for SubPath
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more