reng 0.1.1

A simple OpenGL engine with physics, UI, complex model handling and much more!
Documentation
1
2
3
4
5
6
7
8
9
use glam::{Vec2, Vec3, Vec4};

#[derive(Copy, Clone)]
pub struct Vertex{
    pub position: Vec3,
    pub color: Vec4,
    pub tex_coords: Vec2,
    pub normal: Vec3,
}