bevy_manim 0.1.0

bevy plugin for drawing and animation
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::core::{Vertex, Indices, Color};

pub trait Animation: Send + Sync
{
    fn set_progress(&mut self, progress: f32);
    fn get_progress(&self) -> f32;
    fn get_vertices(&self) -> Vec<Vertex>;
    fn get_indices(&self) -> Indices;
    fn get_colors(&self) -> Vec<Color>;
}