OAIP/window/Paint.h

18 lines
675 B
C
Raw Normal View History

#pragma once
#include <Windows.h>
#define _USE_MATH_DEFINES
#include <math.h>
void paint_figures(HDC hdc);
void house(HDC hdc, int xstart, int ystart);
void oldhouse(HDC hdc);
void car(HDC hdc, int xstart, int ystart, COLORREF color);
void carD(HDC hdc, int xstart, int ystar);
void bush1(HDC hdc, int xstart, int ystart, COLORREF color);
void bush2(HDC hdc, int xstart, int ystart, COLORREF color);
void christmasTree(HDC hdc, int xstart, int ystart);
void tree(HDC hdc, int xstart, int ystart);
void treeR(HDC hdc, int xstart, int ystart, int ang);
void test(HDC hdc, int xcenter, int ycenter, int width, int heigth, int ang);
void sun(HDC hdc, int xcenter, int ycenter);