File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 3038
3038
3039
3039
3040
3040
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ C++ highlight
3041
- // Determine the hit point lies within the planar shape using its plane coordinates.
3041
+ // Determine if the hit point lies within the planar shape using its plane coordinates.
3042
3042
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ C++
3043
3043
auto intersection = r.at(t);
3044
3044
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ C++ highlight
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ class quad : public hittable {
49
49
if (!ray_t .contains (t))
50
50
return false ;
51
51
52
- // Determine the hit point lies within the planar shape using its plane coordinates.
52
+ // Determine if the hit point lies within the planar shape using its plane coordinates.
53
53
auto intersection = r.at (t);
54
54
vec3 planar_hitpt_vector = intersection - Q;
55
55
auto alpha = dot (w, cross (planar_hitpt_vector, v));
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ class quad : public hittable {
51
51
if (!ray_t .contains (t))
52
52
return false ;
53
53
54
- // Determine the hit point lies within the planar shape using its plane coordinates.
54
+ // Determine if the hit point lies within the planar shape using its plane coordinates.
55
55
auto intersection = r.at (t);
56
56
vec3 planar_hitpt_vector = intersection - Q;
57
57
auto alpha = dot (w, cross (planar_hitpt_vector, v));
You can’t perform that action at this time.
0 commit comments