Advertisement
_BYTE

Functions.h

Dec 11th, 2013
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.48 KB | None | 0 0
  1. #include "stdafx.h"
  2.  
  3. #include <windows.h>
  4. #include <math.h>
  5. #include <stdio.h>
  6.  
  7. #define Pi 3.14
  8.  
  9. struct POINT3
  10. {
  11.     int x;
  12.     int y;
  13.     int z;
  14. };
  15.  
  16. POINT Point(int x, int y);
  17. POINT3 PointEx(int x, int y, int z);
  18. int Round(double x);
  19. double Abs(double X);
  20. double DegreeToRad(double Angle);
  21. POINT3 GlobalPointToScreen(POINT3 World_Point, double Angle_Horizontal, double Angle_Vertical, int R);
  22. POINT Perspective(POINT3 PT, double d);
  23. void Piramid(HDC hdc, POINT *PT, int COUNT);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement