miniRT
By Marcelo Magalhães and Ygor G. Sena, 2023.
All Data Structures Files Functions Typedefs Pages
world.h File Reference
#include "lights.h"
#include "shapes.h"
Include dependency graph for world.h:
This graph shows which files directly or indirectly include this file:

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_hitintersect_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...
 

Typedef Documentation

◆ t_comps

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.

Parameters
tStores the intersection value at a given point, if any.
objectStores shape's data.
pointStores a point to be used as referenece.
sightStores the human's eye data used as reference.
insideStores 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_pointThis 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.

◆ t_world

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.

Parameters
xsA struct of type t_hit that stores intersections' values, if any.
object_countStores the information about how many shapes there are in the world.
objectsA list of objects (or shapes) that exist in the world. They can be a cone, a sphere, a plane or a cylinder.
light_countStores the information about how many point lights there are in the world.
lightsA list of point lights that exist in the world.
ambientRepresents the ambient color in the world.

Function Documentation

◆ color_at()

t_color color_at ( t_world  world,
t_ray  ray 
)

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.

Parameters
worldThe world in which the intersection occurred.
rayThe ray that intersected with the shapes in the world.
Returns
Returns the color of the intersection point, or black if there is no such intersection.

◆ intersect_world()

t_hit* intersect_world ( t_world world,
t_ray  ray 
)

Finds all intersections between a ray and all objects in the world.

Parameters
worldThe world of objects to check for intersections.
rayThe ray to check for intersections.
Returns
Returns a pointer to the first intersection in the sorted linked list of intersections or NULL if no intersections are found.

◆ is_shadowed()

t_bool is_shadowed ( t_world world,
t_point  point,
int  index 
)

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.

Parameters
worldA pointer to a structure of type t_world representing the world containing objects and light sources.
pointA structure of type t_tuple representing the location of the point in the world.
indexAn index representing which point light is being passed to the function. It's possible to have more than one.
Returns
Returns TRUE if the point is in shadow. Otherwise, returns FALSE if the point is not in shadow.

◆ prepare_computations()

t_comps prepare_computations ( t_hit intersection,
t_ray  ray 
)

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.

Parameters
intersectionThe intersection between the ray and a shape.
rayThe ray that intersected with the shape.
Returns
Returns a new data structure containing the precomputed information.

◆ shade_hit()

t_color shade_hit ( t_world  world,
t_comps  comps 
)

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.

Parameters
worldThe world in which the intersection occurred.
compsThe precomputed information about the intersection.
Returns
Returns the color of the intersection point.