Renaming Object to Shape (part 1)
This commit is contained in:
@@ -38,7 +38,7 @@ TEST(RayTest, Translating_a_ray)
|
||||
Ray r = Ray(Point(1, 2, 3), Vector(0, 1, 0));
|
||||
|
||||
Matrix m = translation(3, 4, 5);
|
||||
Object o = Object();
|
||||
Shape o = Shape();
|
||||
|
||||
o.setTransform(m);
|
||||
|
||||
@@ -53,7 +53,7 @@ TEST(RayTest, Scaling_a_ray)
|
||||
Ray r = Ray(Point(1, 2, 3), Vector(0, 1, 0));
|
||||
|
||||
Matrix m = scaling(2, 3, 4);
|
||||
Object o = Object();
|
||||
Shape o = Shape();
|
||||
|
||||
o.setTransform(m);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user