implemented 2D image coloring

This commit is contained in:
devZoGok
2021-10-19 19:06:40 +03:00
parent 54544b4d96
commit d2b0f24b03
14 changed files with 90 additions and 39 deletions
+2 -1
View File
@@ -1,9 +1,10 @@
#include"quad.h"
namespace vb01{
Quad::Quad(Vector3 size,bool spatial) : Mesh(){
Quad::Quad(Vector3 size,bool spatial,bool spatialToScreen) : Mesh(){
this->spatial=spatial;
this->staticVerts=false;
this->spatialToScreen=spatialToScreen;
int numPolyVerts=3;
numTris=2;