remove unused array
This commit is contained in:
parent
16c3e46930
commit
ce6376df81
11
src/sphere.c
11
src/sphere.c
|
@ -2,17 +2,6 @@
|
||||||
|
|
||||||
void makeSpheres(struct Sphere *spheres, int count, float t)
|
void makeSpheres(struct Sphere *spheres, int count, float t)
|
||||||
{
|
{
|
||||||
vec3 albedos[] =
|
|
||||||
{
|
|
||||||
{0.0,0.0,1.0},
|
|
||||||
{0.0,1.0,0.0},
|
|
||||||
{0.0,1.0,1.0},
|
|
||||||
{1.0,0.0,0.0},
|
|
||||||
{1.0,0.0,1.0},
|
|
||||||
{1.0,1.0,0.0},
|
|
||||||
{1.0,1.0,1.0}
|
|
||||||
};
|
|
||||||
|
|
||||||
vec3 sc = {0.0,0.0,1.0};
|
vec3 sc = {0.0,0.0,1.0};
|
||||||
|
|
||||||
int sphereIdx = 0;
|
int sphereIdx = 0;
|
||||||
|
|
Loading…
Reference in New Issue