pub trait ID2D1PathGeometry1_Impl: Sized + ID2D1PathGeometry_Impl {
    // Required method
    fn ComputePointAndSegmentAtLength(
        &self,
        length: f32,
        startsegment: u32,
        worldtransform: *const Matrix3x2,
        flatteningtolerance: f32,
        pointdescription: *mut D2D1_POINT_DESCRIPTION
    ) -> Result<()>;
}

Required Methods§

fn ComputePointAndSegmentAtLength( &self, length: f32, startsegment: u32, worldtransform: *const Matrix3x2, flatteningtolerance: f32, pointdescription: *mut D2D1_POINT_DESCRIPTION ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§