Raytracer: Fix typo in comment

This commit is contained in:
Ryan Schmidt 2022-07-31 12:24:34 -05:00 committed by GitHub
parent 8704ff3756
commit 60fe5bdec9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@
#include <stdbool.h>
#include <stdlib.h>
pascal /* <- pascal calling convention, for no reason in particular except to test the comppiler */
pascal /* <- pascal calling convention, for no reason in particular except to test the compiler */
bool hitSphere(float x0, float y0, float z0, float dx, float dy, float dz, float *t)
{
const float xc = 0.0f, yc = 0.0f, zc = -6.0f, r = 1.0f;