draw.h
 1  /* ************************************************************************** */
 2  /*                                                                            */
 3  /*                                                        :::      ::::::::   */
 4  /*   draw.h                                             :+:      :+:    :+:   */
 5  /*                                                    +:+ +:+         +:+     */
 6  /*   By: gychoi <gychoi@student.42seoul.kr>         +#+  +:+       +#+        */
 7  /*                                                +#+#+#+#+#+   +#+           */
 8  /*   Created: 2023/05/24 19:23:49 by gychoi            #+#    #+#             */
 9  /*   Updated: 2023/05/25 19:50:28 by gychoi           ###   ########.fr       */
10  /*                                                                            */
11  /* ************************************************************************** */
12  
13  #ifndef DRAW_H
14  # define DRAW_H
15  
16  # include "init.h"
17  # include "libvec.h"
18  # include "mlx.h"
19  
20  void	my_mlx_pixel_put(t_img *img, int x, int y, t_color3 pixel);
21  
22  #endif