Bagi yang belum punya materi Sertifikasi 3 tentang dakwah bisa mendownload lewat link di bawah ini.
materi yang ada disini adalah materi dari awal perkuliahan sampai dengan UAS.
Klik "4Shared"
Password : r_maulan...
16 Apr 2012
14 Apr 2012
Grafkom prak 4 postes Membuat 3 garis dengan DDA dan Bresenham
/* Praktikum 04
* Membuat objek garis dengan DDA dan Bresenham
*/
#include < windows.h >
#include < stdio.h >
#include < stdlib.h >
#include < string.h >
#include < stdarg.h >
#include < glut.h >
#include < math.h >
void display(void)
{
//set display-window background color to white
glClearColor(1.0,1.0,1.0,0.0);
//set projection parameters
glMatrixMode(GL_PROJECTION);
gluOrtho2D(0.0,...
Grafkom prak 4 Membuat garis dengan DDA dan Bresenham
/* Praktikum 04
* Membuat objek garis dengan DDA dan Bresenham
*/
#include < windows.h >
#include < stdio.h >
#include < stdlib.h >
#include < string.h >
#include < stdarg.h >
#include < glut.h >
#include < math.h >
void display(void)
{
//set display-window background color to white
glClearColor(1.0,1.0,1.0,0.0);
//set projection parameters
glMatrixMode(GL_PROJECTION);
gluOrtho2D(0.0,...
7 Apr 2012
Postes 3 Grafkom dengan inisial nama "R" dan "M"
/* Praktikum 03
* Membuat objek primitif : poligon
*/
#include < windows.h >
#include < stdio.h >
#include < stdlib.h >
#include < string.h >
#include < stdarg.h >
#include < glut.h >
void display(void)
{
GLubyte fly[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x03, 0x80, 0x01, 0xC0, 0x06, 0xC0, 0x03, 0x60,
0x04, 0x60, 0x06, 0x20, 0x04, 0x30, 0x0C, 0x20,
0x04, 0x18, 0x18,...
Grafkom Praktikum 3

Hasil runningnya...
Dan ini codingnya...
/* Praktikum 03* Membuat objek primitif : poligon*/#include < windows.h >#include < stdio.h >#include < stdlib.h >#include < string.h >#include < stdarg.h >#include < glut.h >void display(void){GLubyte fly[] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,0x03, 0x80, 0x01, 0xC0, 0x06, 0xC0, 0x03, 0x60,0x04, 0x60, 0x06,...