MiniLibx

MLX 라이브러리 윈도우의 제어와 그래픽 작업을 위한 라이브러리. mlx라이브러리 내부의 mlx.h 파일을 인클루드 함으로써 MiniLibX API를 사용. cc -L[mlx 폴더 경로] -lmlx -framework OpenGL -framework AppKit *.c MiniLibx 함수 1. mlx_init void * mlx_init(void) 나의 소프트웨어와 OS의 디스플레이를 연결해주는 함수. 사용법 #include "mlx.h" int main() { void*mlx_ptr; mlx_ptr = mlx_init(); } 2. mlx_new_window void * mlx_new_window ( void mlx_ptr, int size_x, int size_y, char *title ); 디스플..
영상 42 인트라에 있는 Minilbx 소개 학생들을 위한 간단한 그래픽 인터페이스 작동 방식 #include void * mix_int (); //mac에서 이렇게 쓴다고 함 man 이용하여 보기 man /usr/share/man/man3/mlx.1 번역 Google 번역 NAME MiniLibX - Simple Graphical Interface Library for students SYNOPSYS #include void * mlx_init (); DESCRIPTION MiniLibX is an easy way to create graphical software, without any X- Window/Cocoa programming knowledge. It provides simple window..
재윤
'MiniLibx' 태그의 글 목록