Skip to content

2D/3D animations on Windows console

License

Notifications You must be signed in to change notification settings

salihmarangoz/DrawOnConsole

Repository files navigation

Draw on Console (C, C++, Pascal)

Introduction

It all started with coding colorful and with animations 2048 game on console in Pascal. These codes have written by me while I was studying Computer Engineering B.S. Most of them belong to second year of my University life. There are two most important things used in my codes:

  • First; I have used the projection calculation based on the image below, so there are no 3rd party libraries.

  • Second; refreshing whole console was too computationally expensive, so I have optimized the refresh method to print only the renewed characters.

3d

Used IDE's

  • C/C++ -> Orwell Dev-C++ 5.11
  • Pascal-> Bloodshed Dev-Pascal 1.9.2
  • Java-> Eclipse 4.12.0

Animations

c_animation_3d_moving_cubes

c_animation_3d_wave

c_animation_circle

c_animation_heart

c_animation_math_functions

c_animation_selection_sort

c_draw_sphere

c_game_candy_crush

cpp_game_snake

pascal_game_2048

java_animation_mandelbrot

References