https://github.com/NSchertler/GeneralizedMotorcycleGraph
Tip revision: a34738fe34a051760b4042dc9d740231e511fec1 authored by Nico Schertler on 31 October 2020, 07:04:57 UTC
Updated access token
Updated access token
Tip revision: a34738f
cylinder.vert
#version 330
in vec3 position;
in vec4 color;
out vData
{
vec3 pos;
vec4 color;
} vertex;
uniform mat4 mv;
void main()
{
vertex.pos = position;
vertex.color = color;
}