1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:47:35 +00:00

Libraries: Fix typos

This commit is contained in:
Nico Weber 2021-09-30 20:03:41 -04:00 committed by Linus Groh
parent 9ec9886b04
commit de72332920
9 changed files with 10 additions and 10 deletions

View file

@ -34,7 +34,7 @@ bool Clipper::point_within_clip_plane(const FloatVector4& vertex, ClipPlane plan
GLVertex Clipper::clip_intersection_point(const GLVertex& p1, const GLVertex& p2, ClipPlane plane_index)
{
// See https://www.microsoft.com/en-us/research/wp-content/uploads/1978/01/p245-blinn.pdf
// "Clipping Using Homogenous Coordinates" Blinn/Newell, 1978
// "Clipping Using Homogeneous Coordinates" Blinn/Newell, 1978
float w1 = p1.position.w();
float w2 = p2.position.w();