Postingan

Final Report GDP #Game_LB2122

Gambar
  WestBlitz Game Design Document          Kelompok 11 - LB01 2301883643  Albertius Christopher Nathan 2301952773  Ryani Yuan Jie Lee 2301945780 Jeremy Martinus Sirait 2301874771  Stephen 2301929360  Christopher Introduction Ini adalah dokumen pengembangan game (GDD atau Game Development Documentation ) untuk game 3D Third Person Shooting yang bernama WestBlitz. Game ini berlatarkan pada era Wild West di Amerika pada awal abad ke-17. Game ini direncanakan akan berjalan secara online sehingga pemain bisa bermain dengan pemain lain dalam duel secara real-time . Pengerjaan game ini melibatkan semua anggota dari kelompok kami. (Introduction of the document, can be filled with the reason the document is created, the people involved, etc) Example: This document is created for Stella Maris game development workshop. Game Overview WestBlitz adalah game platformer aksi yang mana melibatkan pertarungan satu-lawan-satu antara pemain ataupun bot yang disediakan oleh sistem. Tujuan utama dari per

Laporan Akhir Proyek Computer Graphics #comgraf_LB2122

Gambar
Data Anggota Kelompok 2301883643 ALBERTIUS CHRISTOPHER NATHAN 2301855135 NICHOLAS CALVIN 2301865773 ALRAFLY DEVARA ADYATAMA 2301892074 EUGENE REGINALD PATRICK 2301862891 ONGKY FEBRIANDY Latar Belakang Catur adalah permainan papan yang terdiri dari 64 kotak, 8x8 dengan warna hitam putih setiap kotak secara bergantian. Catur diyakini berasal dari India, sejak abad 6. Catur merupakan salah satu permainan papan sekaligus permainan berpikir. Catur terbagi menjadi 2 pemain, pemain pertama menggunakan bidak warna putih, pemain kedua menggunakan bidak warna hitam. Setiap pemain memiliki 16 bidak catur, setiap bidak mempunyai cara geraknya masing-masing. Cara bermain catur cukup mudah, akan tetapi membutuhkan strategi yang kuat untuk memenangkan permainan ini. Ada banyak manfaat yang diberikan dari bermain catur. Dapat meningkatkan konsentrasi, melatih kemampuan perencanaan, mampu memecahkan masalah, meningkatkan IQ dan lainnya. Permainan catur ini sangat berguna untuk anak dibawah umur 7 untuk
Gambar
  Blog  Laporan Information Visualization Kelompok : Albertius Christopher Nathan / 2301883643   Blisstine / 2301904465  Elric Pien William / 2301870432  Dalam visualisasi data yang dibuat oleh kelompok kami di mata kuliah ini, adanya beberapa macam diagram sederhana yang digunakan dalam memahami informasi yang disajikan. Berikut di antaranya :  Visualisasi diatas menggunakan line chart yang dimana digunakan untuk menunjukkan pergerakan suatu data, secara kontinu. Semenjak data yang diinginkan berupa data kontinu, maka digunakanlah line chart. Grafik diatas menunjukkan pergerakan jumlah dari tiap etnis yang ada di Singapura, mulai dari tahun 1957 sampai dengan tahun 2019. Dari grafik diatas, dapat dilihat bahwa ada penurunan jumlah etnis Tionghoa pada kisaran tahun 2002 - 2003. Setelah kami lakukan penyelidikan, ternyata hal ini disebabkan oleh penyebaran penyakit SARS-Cov-2 yang menewaskan sedikitnya 33 jiwa di Singapura. Selain itu, ada pula beberapa faktor lain berupa transmigrasi a

FINAL REVIEW Data Structures Binus

Gambar
FINAL REVIEW Data Structures Nama   : Albertius Christopher Nathan NIM     : 2301883643 Kelas    : CB-01 / LN-01 Dosen   : Gradiyanto Sanjaya (D5327), NICKY HENDRIK SEN (NH191), WAHYU (WU191) [LN-01]               Henry Chong (D4460),  Ferdinand Ariandy Luwinda ( D4522) [CB-01] 1. Linked List sa Linked List is pretty similar to array, but Linked List is a linear data structure. Unlike arrays, linked list elements are not stored at a contiguous location; the elements are linked using pointers. Linked List are divided into 2 types, the Single Linked List and Double Linked List. To read more about linked lists, you can go here  2. Hashing, Hash Tables, and Binary Tree Hashing is an important Data Structure which is designed to use a special function called the Hash function which is used to map a given value with a particular key for faster access of elements. The efficiency of mapping depends of the efficiency of the hash function used. Hash Table is a data s

Heap and Tries

Gambar
What is HEAP? A heap is a tree-based data structure in which all the nodes of the tree are in a specific order. For example, if  X  is the parent node of  Y , then the value of  X  follows a specific order with respect to the value of  Y  and the same order will be followed across the tree. The maximum number of children of a node in a heap depends on the type of heap. However, in the more commonly-used heap type, there are at most  2  children of a node and it's known as a binary heap. In a binary heap, if the heap is a complete binary tree with  N  nodes, then it has the smallest possible height which is  l o g 2 N . Illustration of Heap In the diagram above, you can observe a particular sequence, i.e each node has greater value than any of its children. Suppose there are  N  Jobs in a queue to be done, and each job has its own priority. The job with maximum priority will get completed first than others. At each instant, we are completing a job with maxi