Added half cut tape.

This commit is contained in:
2020-04-06 17:40:20 -04:00
parent 5c0f8bf079
commit 3bda314253
12 changed files with 5135 additions and 818 deletions

View File

@ -1,5 +1,7 @@
#version 330 core
out vec4 FragColor;
in vec3 FragPosition ;

View File

@ -1,9 +1,13 @@
#version 330 core
#define VertexIndex 0
#define NormalIndex 1
#define TextureIndex 2
layout (location = VertexIndex ) in vec3 VertPosition;
layout (location = NormalIndex ) in vec3 VertNormal ;
layout (location = TextureIndex) in vec3 VertTexture ;