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 30383038
30393039
30403040 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 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.
30423042 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ C++
30433043 auto intersection = r.at(t);
30443044 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ C++ highlight
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ class quad : public hittable {
4949 if (!ray_t .contains (t))
5050 return false ;
5151
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.
5353 auto intersection = r.at (t);
5454 vec3 planar_hitpt_vector = intersection - Q;
5555 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 {
5151 if (!ray_t .contains (t))
5252 return false ;
5353
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.
5555 auto intersection = r.at (t);
5656 vec3 planar_hitpt_vector = intersection - Q;
5757 auto alpha = dot (w, cross (planar_hitpt_vector, v));
You can’t perform that action at this time.
0 commit comments