/* By: ljiriste <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/11 18:50:32 by ljiriste #+# #+# */
-/* Updated: 2024/01/17 12:19:22 by ljiriste ### ########.fr */
+/* Updated: 2024/04/26 09:23:27 by ljiriste ### ########.fr */
/* */
/* ************************************************************************** */
colors[3] = to_color(0x00FF0000);
return (general_palette(np, colors, 4));
}
+
+t_color double_exotic(double np)
+{
+ t_color res;
+
+ res.r = *((char *)&np + 2);
+ res.g = *((char *)&np + 5);
+ res.b = *((char *)&np + 7);
+ return (res);
+}