From 6b8f2f4faac3136ac5185370d03a93b65beda0de Mon Sep 17 00:00:00 2001
From: "raed.abdennad" <raed.abdennadher@hesge.ch>
Date: Wed, 2 Oct 2019 22:24:51 +0200
Subject: [PATCH] Update YourLetter.js

---
 lab2/src/YourLetter.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lab2/src/YourLetter.js b/lab2/src/YourLetter.js
index 88c885d..262b30d 100644
--- a/lab2/src/YourLetter.js
+++ b/lab2/src/YourLetter.js
@@ -15,17 +15,17 @@ function YourLetter() {
 
 	this.vertices = new Float32Array([
 		v0, v1,
-		// v2, v3, v4... TODO: Complete with your vertices (see cube example in the README file of lab 2)
+		// v2, v3, v4... TODO: Complete with your vertices
   ].flat(2));
 
 	// Define vertices indices
 	this.indices = new Uint8Array([       // Indices of the vertices
 		0,1,8, 		0,8,6,
-		// 0,6,7,... TODO: Complete with your indices (see cube example in the README file of lab 2)
+		// 0,6,7,... TODO: Complete with your indices
   ]);
 
 	// Define colors
 	this.colors = new Float32Array(
-		// TODO: Complete with your colors (see cube example in the README file of lab 2)
+		// TODO: Complete with your colors
 	);
 }
\ No newline at end of file
-- 
GitLab