https://github.com/NSchertler/GeneralizedMotorcycleGraph
Revision 16a6ae64d8f7efb681a6292569f0935fc909799f authored by Nico Schertler on 09 July 2018, 12:30:22 UTC, committed by Nico Schertler on 09 July 2018, 12:30:22 UTC
1 parent 365534a
Tip revision: 16a6ae64d8f7efb681a6292569f0935fc909799f authored by Nico Schertler on 09 July 2018, 12:30:22 UTC
minor changes
minor changes
Tip revision: 16a6ae6
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;
}
Computing file changes ...