This commit is contained in:
2018-03-27 13:59:47 +02:00
parent 705763f03c
commit e6444ceeb7
5 changed files with 24 additions and 24 deletions

View File

@@ -28,7 +28,7 @@ public:
/** one triangle */
struct Face {
VNT vnt[3];
Face(VNT v1, VNT v2, VNT v3) : vnt({v1,v2,v3}) {;}
Face(VNT v1, VNT v2, VNT v3) : vnt{v1,v2,v3} {;}
};
/** internal data */