Skip to content

Commit

Permalink
update scene
Browse files Browse the repository at this point in the history
  • Loading branch information
LittleTheFu committed Sep 27, 2024
1 parent 053ff5d commit 5fb94d9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scene/scene.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ void Scene::constructScene()
TriAngleVertex vb = TriAngleVertex(0, -20, 0.5, 1);
TriAngleVertex vc = TriAngleVertex(20, 20, 1, 0);
TriAngle *triAngle = new TriAngle(va, vb, vc,
Vector3(0, -Common::PI / 4, 0), Vector3(-80, -50, 215),
lambMtrlLena);
Vector3(0, -Common::PI / 4, 0), Vector3(-50, 50, 300),
lambMtrlPurple);

Ball *redBall = new Ball(Vector3::ZERO, Vector3(-55, 10, 240), 20, lambMtrlRed);
Ball *yellowBall = new Ball(Vector3::ZERO, Vector3(60, 80, 225), 20, lambMtrlYellow);
Expand Down Expand Up @@ -134,15 +134,15 @@ void Scene::constructScene()

m_pObjectPool->add(light);

// pool->add(triAngle);
m_pObjectPool->add(triAngle);

// pool->add(redBall);
// pool->add(yellowBall);
// pool->add(aquaBall);

// m_pObjectPool->add(whiteBall);

m_pObjectPool->add(glassBall);
// m_pObjectPool->add(glassBall);
// pool->add(mirrorBall);
// pool->add(mixBall);

Expand Down

0 comments on commit 5fb94d9

Please sign in to comment.