moved texturebuffer outside of spec

This commit is contained in:
Sandro Sobczyński
2020-10-29 21:53:08 +01:00
parent ab69ba28e3
commit 8501a85f49
22 changed files with 363 additions and 180 deletions
+4 -4
View File
@@ -18,11 +18,11 @@
// ----
/** Create by specifying 3 points */
Vector3::Vector3(float x, float y, float z)
Vector3::Vector3(float t_x, float t_y, float t_z)
{
this->x = x;
this->y = y;
this->z = z;
x = t_x;
y = t_y;
z = t_z;
}
/** Create with another vector values */