Browse Source

chore: merge master

bdestombes 3 years ago
parent
commit
52882fb274
1 changed files with 4 additions and 5 deletions
  1. 4 5
      backend/server.js

+ 4 - 5
backend/server.js

@@ -122,8 +122,8 @@ function getAngleApex(dotTrio, topIndex) {
 		dotC = dotTrio[1];
 	}
 
-	const AB = [dotB.x - dotA.x, dotB.y - dotA.y] ;
-	const CB = [dotB.x - dotC.x, dotB.y - dotC.y] ;
+	const AB = [dotB.x - dotA.x, dotB.y - dotA.y];
+	const CB = [dotB.x - dotC.x, dotB.y - dotC.y];
 
 	const dotProd = (AB[0] * CB[0] + AB[1] * CB[1]);
 	const crossProd = (AB[0] * CB[1] - AB[1] * CB[0]);
@@ -305,8 +305,7 @@ app.post('/emitter/json', function (req, res) {
 				console.log('-- triangles --', triangles);
 			}
 
-			//MOD TITI
-			//objet pour stocker les informations des triangles identifiés (points, centre, apexAngle, orientation, indice apex, width, height)
+			/* objet pour stocker les informations des triangles identifiés (points, centre, apexAngle, orientation, indice apex, width, height) */
 
 			objTriangle = {} ;
 
@@ -429,5 +428,5 @@ app.post('/emitter/json', function (req, res) {
 });
 
 httpServer.listen(config.app.httpPort, function () {
-	console.log(`Votre app est disponible sur localhost:${config.app.httpPort} !`)
+	console.log(`Votre app est disponible sur http://localhost:${config.app.httpPort} !`)
 });