Skip to content

Commit

Permalink
small
Browse files Browse the repository at this point in the history
  • Loading branch information
nobuyuki83 committed Jun 3, 2024
1 parent 6ac479d commit 5f73ae5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions task07/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -185,32 +185,32 @@ class Sphere {

const Sphere spheres[4] = {
{
{1.0, 1.0, 0.0}, // position
0.4, // rad
{1.f, 1.f, 0.f}, // position
0.4f, // rad
2000.f, // shiness
0.0f, // specular
0.0f, // diffuse
1.f // emission
},
{
{-1.0, -1.0, -1.0}, // position
1.0, // rad
{-1.f, -1.f, -1.f}, // position
1.0f, // rad
2000.f, // shiness
0.8f, // specular
0.2f, // diffuse
0.f // emission
},
{
{+1.0, -1.0, -1.0}, // position
1.0,
{+1.f, -1.f, -1.f}, // position
1.f,
2000.f,
0.5f,
0.5f,
0.f
},
{
{-1.0, +1.0, -1.0}, // position
1.0,
{-1.f, +1.f, -1.f}, // position
1.f,
2000.f,
0.2f,
0.8f,
Expand Down

0 comments on commit 5f73ae5

Please sign in to comment.