kunjungan industri RPL SMK Satya Praja 2 Petarukan

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Minggu, 17 September 2017

memasukan iklan di blog

                                                   "MEMASUKAN IKLAN DI BLOG"

1.login ke email dan masuk ke blogger anda.

2.masuk atau klik ke tema lalu klik edit html klik ctrl + f masukan kode dibawah ini :


]]></b:skin>


3.lalu pastekan kode di bawah ini tepat di atasnya:


 /** Kotak Iklan **/
.kotak_iklan {text-align: center;}
.kotak_iklan  img {margin: 0px 5px 5px 0px;padding: 5px;text-align: center;border: 1px solid #ddd;}
.kotak_iklan  img:hover {border: 1px solid #333}



4.lalu masuk ke tataletak klik tambahkan gatget lalu kalik java scrip lalu pastekan kode di bawah ini :


<div class="kotak_iklan">
<a href="http://olx.co.id/mobil/q-honda-jazz/" title="mobilhonda"><img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjlrGB8hfRrax_bIJvFNanNvEXbm6MCtVkEU5NOSsTgyb7OJyOqYl0hbGiuFtiOAb3Eu2rMjT2zXdPVzscybq1RYbvenHFu9_TL9OQBh4-m4i__Swu4mgftPkVgrTs88gvDyaKyuzwl2ONt/s1600/blog-honda.gif" alt="alt/text gambar" width="125" height="125" /></a>
</div>


5.lalu save

Selasa, 12 September 2017

MEMBUAT DI Dev-D++ MUDAH

DASAR DASAR GLUT

  • GL_POINTS
  • GL_LINES
  • GL_TRIANGLES
  • GL_TRIANGLE_STRIP
  • GL_QUAD_STRIP
  • GL_LINE_STRIP
  • GL_LINE_LOOP
  • GL_QUADS
  • GL_POLYGON
  • GL_TRIANGLE_FAN
KODE DI BAWAH INI


/* OpenGL animation code goes here */

           glPushMatrix ();
glRotatef (theta, 0.0f, 0.0f, 1.0f);
glClearColor (0.0f, 0.0f, 0.0f, 0.0f);
glClear (GL_TRIANGLE_FAN);
glBegin (GL_LINE_LOOP);
glColor3f (1.0f, 0.0f, 0.0f); glVertex2f (-0.5f, -0.5f);
glColor3f (0.0f, 1.0f, 0.0f); glVertex2f (-0.5f, 0.5f);
glColor3f (0.0f, 2.0f, 0.0f); glVertex2f (0.5f, 0.5f);
glColor3f (0.0f, 0.0f, 3.0f); glVertex2f (0.5f, -0.5f);
glEnd ();

SwapBuffers (hDC);

theta += 1.0f;
Sleep (1);

}
 }

dan itu kodenya bagi mau yang merubah-rubagh tinggal ganti saja kode GL nya se kreasi kalian Trimakasih  :-)