Go to the source code of this file.
Data Structures | |
struct | s_world |
This struct contains everything related to the building of a ray tracing's world. The world has objects (or shapes), point lights and an ambient color. Together, these elements makes the scene rendering possible. More... | |
struct | s_comps |
This structure of type t_comps stores some precomputed values that are useful when working intersections and their color calculations. More... | |
Typedefs | |
typedef struct s_world | t_world |
This struct contains everything related to the building of a ray tracing's world. The world has objects (or shapes), point lights and an ambient color. Together, these elements makes the scene rendering possible. More... | |
typedef struct s_comps | t_comps |
This structure of type t_comps stores some precomputed values that are useful when working intersections and their color calculations. More... | |
Functions | |
t_hit * | intersect_world (t_world *world, t_ray ray) |
Finds all intersections between a ray and all objects in the world. More... | |
t_comps | prepare_computations (t_hit *intersection, t_ray ray) |
Precomputes information related to an intersection. More... | |
t_color | shade_hit (t_world world, t_comps comps) |
Computes the color at an intersection in the given world. More... | |
t_color | color_at (t_world world, t_ray ray) |
Computes the color at the intersection of a given ray with a world. More... | |
t_bool | is_shadowed (t_world *world, t_point point, int index) |
Determines whether a point in a world is in shadow or not. More... | |
This structure of type t_comps stores some precomputed values that are useful when working intersections and their color calculations.
t | Stores the intersection value at a given point, if any. |
object | Stores shape's data. |
point | Stores a point to be used as referenece. |
sight | Stores the human's eye data used as reference. |
inside | Stores TRUE or FALSE in regards to whether a hit occurs inside the object (or shape). If hit is inside the shape, the value is TRUE. Otherwise, it's is FALSE. It works together with the field over_point to fix a problem called acne. |
over_point | This field avoids the effect called acne, which happens because computers cannot represent floating points very well. Because of that, sometimes the calculation of the ray-surface intersection will result in a point of intersection that lies beneath the actual surface of a given shape. This field sets a margin of error. |
This struct contains everything related to the building of a ray tracing's world. The world has objects (or shapes), point lights and an ambient color. Together, these elements makes the scene rendering possible.
xs | A struct of type t_hit that stores intersections' values, if any. |
object_count | Stores the information about how many shapes there are in the world. |
objects | A list of objects (or shapes) that exist in the world. They can be a cone, a sphere, a plane or a cylinder. |
light_count | Stores the information about how many point lights there are in the world. |
lights | A list of point lights that exist in the world. |
ambient | Represents the ambient color in the world. |
Computes the color at the intersection of a given ray with a world.
Given a world and a ray, this function computes the color of the intersection point between the ray and the shapes in the world. It first uses intersect_world() to find the intersections between the ray and the shapes in the world. If there are no intersections, the function returns the color black. Otherwise, it selects the intersection that is closest to the ray's origin and precomputes the necessary values for that intersection using prepare_computations(). Finally, the function calls shade_hit() to compute the color at the intersection and returns it.
world | The world in which the intersection occurred. |
ray | The ray that intersected with the shapes in the world. |
Finds all intersections between a ray and all objects in the world.
world | The world of objects to check for intersections. |
ray | The ray to check for intersections. |
Determines whether a point in a world is in shadow or not.
This function works by casting a shadow ray from the given point towards each light source in the world. If the shadow ray intersects any objects in the world before reaching the light source, the point is considered to be in shadow. The function calculates the distance between the light source and the given point using the magnitude of the vector between them, and normalizes the vector to get its direction.
world | A pointer to a structure of type t_world representing the world containing objects and light sources. |
point | A structure of type t_tuple representing the location of the point in the world. |
index | An index representing which point light is being passed to the function. It's possible to have more than one. |
TRUE
if the point is in shadow. Otherwise, returns FALSE
if the point is not in shadow. Precomputes information related to an intersection.
Given an intersection between a ray and a shape, this function precomputes the point where the intersection occurred in world space, the eye vector pointing back towards the camera, and the normal vector at the point of intersection. This precomputed information is stored in a new data structure and returned.
If the hit point occurs inside of a shape, the normal vector will be flipped to point to the correct direction.
intersection | The intersection between the ray and a shape. |
ray | The ray that intersected with the shape. |
Computes the color at an intersection in the given world.
Given a world and a precomputed information about an intersection between a ray and a shape, this function computes the color of the intersection point. The color is computed by determining the light that hits the intersection and blending that light with the color of the shape at that point. The resulting color is returned.
world | The world in which the intersection occurred. |
comps | The precomputed information about the intersection. |