pub trait Renderer { // Required method fn draw_mesh(&mut self, mesh: Mesh); }
A renderer capable of drawing a Mesh.
Mesh
Draws the given Mesh.