Struct rerun::external::eframe::egui::epaint::tessellator::Tessellator
pub struct Tessellator {
pixels_per_point: f32,
options: TessellationOptions,
font_tex_size: [usize; 2],
prepared_discs: Vec<PreparedDisc>,
feathering: f32,
clip_rect: Rect,
scratchpad_points: Vec<Pos2>,
scratchpad_path: Path,
}
Expand description
Converts Shape
s into triangles (Mesh
).
For performance reasons it is smart to reuse the same Tessellator
.
See also tessellate_shapes
, a convenient wrapper around Tessellator
.
Fields§
§pixels_per_point: f32
§options: TessellationOptions
§font_tex_size: [usize; 2]
§prepared_discs: Vec<PreparedDisc>
§feathering: f32
§clip_rect: Rect
§scratchpad_points: Vec<Pos2>
§scratchpad_path: Path
Implementations§
§impl Tessellator
impl Tessellator
pub 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
.
pixels_per_point
: number of physical pixels to each logical pointoptions
: tessellation qualityshapes
: what to tessellatefont_tex_size
: size of the font texture. Required to normalize glyph uv rectangles when tessellating text.prepared_discs
: Whatcrate::TextureAtlas::prepared_discs
returns. Can safely be set to an empty vec.
pub 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
pub fn round_to_pixel_center(&self, point: f32) -> f32
pub fn round_pos_to_pixel_center(&self, pos: Pos2) -> Pos2
pub 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.
pub 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.
pub 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.
pub fn tessellate_ellipse(&mut self, shape: EllipseShape, out: &mut Mesh)
pub fn tessellate_ellipse(&mut self, shape: EllipseShape, out: &mut Mesh)
Tessellate a single EllipseShape
into a Mesh
.
shape
: the ellipse to tessellate.out
: triangles are appended to this.
pub fn tessellate_mesh(&self, mesh: &Mesh, out: &mut Mesh)
pub fn tessellate_mesh(&self, mesh: &Mesh, out: &mut Mesh)
pub fn tessellate_line(
&mut self,
points: [Pos2; 2],
stroke: impl Into<PathStroke>,
out: &mut Mesh
)
pub fn tessellate_line( &mut self, points: [Pos2; 2], stroke: impl Into<PathStroke>, 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.
pub fn tessellate_path(&mut self, path_shape: &PathShape, out: &mut Mesh)
pub fn tessellate_path(&mut self, path_shape: &PathShape, out: &mut Mesh)
pub fn tessellate_rect(&mut self, rect: &RectShape, out: &mut Mesh)
pub fn tessellate_rect(&mut self, rect: &RectShape, out: &mut Mesh)
pub fn tessellate_text(&mut self, text_shape: &TextShape, out: &mut Mesh)
pub fn tessellate_text(&mut self, text_shape: &TextShape, out: &mut Mesh)
pub 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.
pub 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.
§impl Tessellator
impl Tessellator
pub fn tessellate_shapes(
&mut self,
shapes: Vec<ClippedShape>
) -> Vec<ClippedPrimitive>
pub fn tessellate_shapes( &mut self, shapes: Vec<ClippedShape> ) -> Vec<ClippedPrimitive>
Turns Shape
:s into sets of triangles.
The given shapes will tessellated in the same order as they are given. They will be batched together by clip rectangle.
pixels_per_point
: number of physical pixels to each logical pointoptions
: tessellation qualityshapes
: what to tessellatefont_tex_size
: size of the font texture. Required to normalize glyph uv rectangles when tessellating text.prepared_discs
: Whatcrate::TextureAtlas::prepared_discs
returns. Can safely be set to an empty vec.
The implementation uses a Tessellator
.
§Returns
A list of clip rectangles with matching Mesh
.
Trait Implementations§
§impl Clone for Tessellator
impl Clone for Tessellator
§fn clone(&self) -> Tessellator
fn clone(&self) -> Tessellator
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto 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
source§impl<T> CheckedAs for T
impl<T> CheckedAs for T
source§fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
source§impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
source§fn checked_cast_from(src: Src) -> Option<Dst>
fn checked_cast_from(src: Src) -> Option<Dst>
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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> ⓘ
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> ⓘ
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<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request