Контрольная работа: Создание компьютерной графики при помощи OpenGL

auxInitWindow ("v11_04");

glScaled(1.5, 1.5, 1.5);

glTranslated(0,-3,0);

auxIdleFunc (display);

auxReshapeFunc(resize);

glEnable (GL_DEPTH_TEST);

glEnable (GL_COLOR_MATERIAL);

auxMainLoop(display);

}

Результат:

5. Напишите программу мерцающего звездного неба

Решение :

#include <windows.h>

#include <GL/gl.h>

#include <GL/glu.h>

#include <GL/glaux.h>

#include<time.h>

#include <stdio.h>

#include <iostream.h>

#include <conio.h>

#include <math.h>

int t_sec() // считывание секунд с системных часов

{

struct tm *newtime;

time_t aclock;

time(&aclock);

newtime = localtime(&aclock);

asctime(newtime);

К-во Просмотров: 666
Бесплатно скачать Контрольная работа: Создание компьютерной графики при помощи OpenGL