Skip to content

Commit 97a4b18

Browse files
committed
encoding
1 parent 164d51a commit 97a4b18

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Frame/Source/Assignment/Assignment7/BVH.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Intersection BVHAccel::getIntersection(BVHBuildNode* node, const Ray& ray) const
128128
return Intersection{};
129129
}
130130

131-
// Ò¶½Úµã
131+
// 叶节点
132132
if (node->left == nullptr && node->right == nullptr)
133133
{
134134
return node->object->getIntersection(ray);

Frame/Source/Assignment/Assignment7/Vector.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class Vector3f
5151
return (&x)[index];
5252
}
5353

54-
// ÐÞ¸´¿ò¼Ü bug
54+
// 修复框架 bug
5555
float &operator[](int index)
5656
{
5757
return (&x)[index];

0 commit comments

Comments
 (0)