pub struct Tessellator { /* private fields */ }Expand description
Converts Shapes into triangles (Mesh).
For performance reasons it is smart to reuse the same Tessellator.
See also tessellate_shapes, a convenient wrapper around Tessellator.
Implementations§
Source§impl Tessellator
impl Tessellator
Sourcepub fn new(
pixels_per_point: f32,
options: TessellationOptions,
font_tex_size: [usize; 2],
prepared_discs: Vec<PreparedDisc>,
) -> Tessellator
pub fn new( pixels_per_point: f32, options: TessellationOptions, font_tex_size: [usize; 2], prepared_discs: Vec<PreparedDisc>, ) -> Tessellator
Create a new Tessellator.
font_tex_size: size of the font texture. Required to normalize glyph uv rectangles when tessellating text.prepared_discs: WhatTextureAtlas::prepared_discsreturns. Can safely be set to an empty vec.
Sourcepub fn set_clip_rect(&mut self, clip_rect: Rect)
pub fn set_clip_rect(&mut self, clip_rect: Rect)
Set the Rect to use for culling.
pub fn round_to_pixel(&self, point: f32) -> f32
Sourcepub fn tessellate_clipped_shape(
&mut self,
clipped_shape: ClippedShape,
out_primitives: &mut Vec<ClippedPrimitive>,
)
pub fn tessellate_clipped_shape( &mut self, clipped_shape: ClippedShape, out_primitives: &mut Vec<ClippedPrimitive>, )
Tessellate a clipped shape into a list of primitives.
Sourcepub fn tessellate_shape(&mut self, shape: Shape, out: &mut Mesh)
pub fn tessellate_shape(&mut self, shape: Shape, out: &mut Mesh)
Tessellate a single Shape into a Mesh.
This call can panic the given shape is of Shape::Vec or Shape::Callback.
For that, use Self::tessellate_clipped_shape instead.
shape: the shape to tessellate.out: triangles are appended to this.
Sourcepub fn tessellate_circle(&mut self, shape: CircleShape, out: &mut Mesh)
pub fn tessellate_circle(&mut self, shape: CircleShape, out: &mut Mesh)
Tessellate a single CircleShape into a Mesh.
shape: the circle to tessellate.out: triangles are appended to this.
Sourcepub fn tessellate_mesh(&mut self, mesh: &Mesh, out: &mut Mesh)
pub fn tessellate_mesh(&mut self, mesh: &Mesh, out: &mut Mesh)
Sourcepub fn tessellate_line(
&mut self,
points: [Pos2; 2],
stroke: Stroke,
out: &mut Mesh,
)
pub fn tessellate_line( &mut self, points: [Pos2; 2], stroke: Stroke, out: &mut Mesh, )
Tessellate a line segment between the two points with the given stroke into a Mesh.
shape: the mesh to tessellate.out: triangles are appended to this.
Sourcepub fn tessellate_path(&mut self, path_shape: &PathShape, out: &mut Mesh)
pub fn tessellate_path(&mut self, path_shape: &PathShape, out: &mut Mesh)
Sourcepub fn tessellate_rect(&mut self, rect: &RectShape, out: &mut Mesh)
pub fn tessellate_rect(&mut self, rect: &RectShape, out: &mut Mesh)
Sourcepub fn tessellate_text(&mut self, text_shape: &TextShape, out: &mut Mesh)
pub fn tessellate_text(&mut self, text_shape: &TextShape, out: &mut Mesh)
Sourcepub fn tessellate_quadratic_bezier(
&mut self,
quadratic_shape: QuadraticBezierShape,
out: &mut Mesh,
)
pub fn tessellate_quadratic_bezier( &mut self, quadratic_shape: QuadraticBezierShape, out: &mut Mesh, )
Tessellate a single QuadraticBezierShape into a Mesh.
quadratic_shape: the shape to tessellate.out: triangles are appended to this.
Sourcepub fn tessellate_cubic_bezier(
&mut self,
cubic_shape: CubicBezierShape,
out: &mut Mesh,
)
pub fn tessellate_cubic_bezier( &mut self, cubic_shape: CubicBezierShape, out: &mut Mesh, )
Tessellate a single CubicBezierShape into a Mesh.
cubic_shape: the shape to tessellate.out: triangles are appended to this.
Auto Trait Implementations§
impl Freeze for Tessellator
impl RefUnwindSafe for Tessellator
impl Send for Tessellator
impl Sync for Tessellator
impl Unpin for Tessellator
impl UnwindSafe for Tessellator
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
Source§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
fn into_sample(self) -> T
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.