Struct comfy_wgpu::epaint::tessellator::Path
pub struct Path(/* private fields */);Expand description
A connected line (without thickness or gaps) which can be tessellated to either to a stroke (with thickness) or a filled convex area. Used as a scratch-pad during tessellation.
Implementations§
§impl Path
impl Path
pub fn clear(&mut self)
pub fn reserve(&mut self, additional: usize)
pub fn add_point(&mut self, pos: Pos2, normal: Vec2)
pub fn add_circle(&mut self, center: Pos2, radius: f32)
pub fn add_line_segment(&mut self, points: [Pos2; 2])
pub fn add_open_points(&mut self, points: &[Pos2])
pub fn add_line_loop(&mut self, points: &[Pos2])
pub fn stroke_open(&self, feathering: f32, stroke: Stroke, out: &mut Mesh)
pub fn stroke_open(&self, feathering: f32, stroke: Stroke, out: &mut Mesh)
Open-ended.
pub fn stroke_closed(&self, feathering: f32, stroke: Stroke, out: &mut Mesh)
pub fn stroke_closed(&self, feathering: f32, stroke: Stroke, out: &mut Mesh)
A closed path (returning to the first point).
pub fn stroke( &self, feathering: f32, path_type: PathType, stroke: Stroke, out: &mut Mesh )
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Path
impl Send for Path
impl Sync for Path
impl Unpin for Path
impl UnwindSafe for Path
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