Skip to content
This repository was archived by the owner on Oct 13, 2023. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Motion_Blur/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ int main(int, char**)
//Create a world
World *world = new World;
world->setAmbient(Color(1));
world->setBackground(Color(0.1, 0.1, 0.1));
world->setBackground(Color(1.0, 1.0, 1.0));

Material *m = new Material(world);
m->color = Color(0.1, 0.7, 0.0);
Expand Down