rt/src/get_obj_color.c

34 lines
1.2 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_obj_color.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: scebula <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/10/01 15:46:16 by scebula #+# #+# */
/* Updated: 2017/01/03 12:24:25 by scebula ### ########.fr */
/* */
/* ************************************************************************** */
#include "rt.h"
t_color get_cylinder_color(t_obj *obj)
{
return (TO_CYLINDER->color);
}
t_color get_sphere_color(t_obj *obj)
{
return (TO_SPHERE->color);
}
t_color get_plane_color(t_obj *obj)
{
return (TO_PLANE->color);
}
t_color get_cone_color(t_obj *obj)
{
return (TO_CONE->color);
}