Impl 4.2.1

This commit is contained in:
hodasemi 2019-01-30 15:11:40 +01:00
parent c9a04efdfa
commit 3b7628dd9c

View file

@ -29,6 +29,9 @@ Box Triangle::ComputeBounds() const
{ {
/* Task 3.2.2 */ /* Task 3.2.2 */
Box b; Box b;
b.Insert(v0);
b.Insert(v1);
b.Insert(v2);
return b; return b;
} }