SlideShare a Scribd company logo
See discussions, stats, and author profiles for this publication at: https://www.researchgate.net/publication/383399489
AN INTERNSHIP REPORT ON AIRPLANE GAME MANAGEMENT SYSTEM
PROJECT REPORT.
Research Proposal · January 2024
DOI: 10.13140/RG.2.2.34738.41925
CITATIONS
0
READS
24
1 author:
Kamal Acharya
Tribhuvan University
248 PUBLICATIONS 4,437 CITATIONS
SEE PROFILE
All content following this page was uploaded by Kamal Acharya on 25 August 2024.
The user has requested enhancement of the downloaded file.
AN
INTERNSHIP REPORT
ON
AIRPLANE GAME MANAGEMENT SYSTEM PROJECT
BY
KAMAL ACHARYA
(Tribhuvan University)
Date: 2024/01/23
ABSTRACT
Graphics provides one of the most natural means of communicating with a
computer, since our highly developed 2D and 3D pattern recognition
allow us to perceive and process pictorialdata rapidly and efficiently.
Interactive computer graphics is the most important means of producing the
pictures since the invention of photography and television. It has the added
advantage that with the computer we can make pictures not only of concrete
real world objects butalso of abstract such as survey results.
This project is a collision evasion process implemented in the form
of a game. Here the useris allowed to control the movement of the plane
through a collision course. The objective is to evade the obstacles and
travel as far as possible. The plane’s upward movement is controlled by
the left mouse button. Holding and pressing the left mouse button takes
the plane higher and releasing the button results in the plane descending
down. As the distance covered increases the speed of the plane increases.
The main obstacles are buildings and clouds. The user must make sure
that no part of the plane touches either the clouds or the buildings. The
plane is also equippedwith a booster which the user can activate with the
right mouse button. The booster makes the plane travel at a faster pace.
The booster gets depleted when being used and replenishes gradually
when not used. At any instance the user can pause the game by pressing
”p” on the keyboard. Pressing the key again will resume the game. The
library glut.h is utilized in the implementationof the game as it provides
a wide range of options to draw the necessary shapes.
Keywords :Computer programming, Project management, Computer engineering
CONTENTS
CHAPTER TITLE PAGE
NO
1 Introduction 1
2 Requirement Analysis 5
3 OpenGL Functions 6
4 Implementation 12
5 Results and Snapshots 34
6 Future Enhancement 37
7 Conclusion 38
Bibliography 39
CHAPTER 1 INTRODUCTION
1.1 Introduction to Computer Graphics
Before the invention of computer graphics people used to display the
information manually either by drawing or creating model which resembles
real environment. For example the Greeks were able to convey their
architectural ideas graphically using drawing. Today the same type of
information is generated by architects, mechanical engineers and draftsman
using computer based graphics system.
Our interaction with computers has become dominated by a visual paradigm
that includes windows, icons, menus and a pointing device, such as a
mouse. From a user’s Perspective, windowing system such as the X
windows system, Microsoft’s Windows. Although we are familiar with the
style of graphical user interface used on most workstations, advances in
computer graphics have made possible other forms of interfaces.
Fig 1.1 A Graphics System
1.5 Introduction to OpenGL API
OpenGL’s structure is similar to that of most
modern API’s any effort that you put into learning OpenGL will
carry over to other software systems. OpenGL is easy to learn
compared with other API’s, it support two and three dimensional
programs that we develop. OpenGL provides the programmer with
an interface to graphics hardware. It is a powerful, low- level
rendering and modeling software library, available on all major
platforms, with wide hardware support.
Most of our applications will be designed to access
OpenGL directly through functions in three libraries they are as
follows:
1. GLU
2. GL
3. GLUT
The main GL libraries usually have function that
begins with the letters gl. The OpenGL Utility Library (GLU) uses
gl functions but contains code for creating common objects and
simplifying viewing. To interface with the window system and to
get input from external devices into our programs we need at least
one more library. For each major window system there is a system-
specific library that provides the glue between the window system
and OpenGL that library is OpenGL Utility Toolkit (GLUT).
1.2 OpenGL supports two classes of primitives:
1 Geometric primitives
2 Image or raster primitives
Geometric primitive are specified in the problem domain and include
points, line segments, polygons, curves, and surfaces. Raster primitives
are those which are displayed using array of pixels, it is difficult to
manipulate raster primitive objects.
OpenGL provide various viewing function that helps us to develop
various views of single object, and the way in which it appears on
screen. OpenGL default view is the orthographic projection. OpenGL
also provide various transformation functions with the help of these
functions user can render its object at the desired location on the screen.
In OpenGL we obtain viewing and modeling functionality through a
small set of transformation functions. We can even rotate the object
along desired locations and with the desired angle on the screen.
1.3 OpenGL
OpenGL provides a set of commands to render a three dimensional
scene. That means you provide the data in an OpenGL-useable form
and OpenGL will show this data on the screen (render it). It is
developed by many companies and it is free to use.
OpenGL is a hardware- and system-independent interface. An
OpenGL-application will work on every platform, as long as there is an
installed implementation. Because it is system independent, there are no
functions to create windows etc., but there are helper functions for each
platform. A very useful thing is GLUT.
1.4 GLUT
GLUT is a complete API written by Mark Kilgard which lets you create
windows and handle the messages. It exists for several platforms, that means
that a program which uses GLUT can be compiled on many platforms without
(or at least with very few) changes in the code.
1.6 OpenGL architecture
OpenGL is a collection of several hundred functions providing access to all the
features offered by your graphics hardware. Internally, it acts as a state
machine--a collection of states that tells OpenGL what to do. Using the API,
you can set various aspects of the state machine, including such things as the
current color, lighting, blending, and so on. When rendering, everything drawn
is affected by the current settings of the state machine. It's important to be
aware of what the various states are, and the effect they have, because it's not
uncommon to have unexpected results due to having one or more states set
incorrectly. At the core of OpenGL is the rendering pipeline as shown in
Figure.
Fig 1.3 The OpenGL rendering pipeline
1.1 How does OpenGL work?
OpenGL bases on the state variables. There are many values, for example the
color, that remain after being specified. There are no classes like in DirectX.
However, it is logically structured.
OpenGL provides its own data types. They all begin with "GL". For example-
GLfloat, GLint and so on. There are also many symbolic constants; they all
begin with "GL_", like GL_POINTS, GL_POLYGON.
CHAPTER 2 REQUIREMENTS ANALYSIS
2.1 RESOURCE REQUIREMENTS
The requirement analysis phase of the project can be classified into:
 Software Requirements
 Hardware Requirements
SOFTWARE REQUIREMENTS:
Input Requirement Standard Input Device :Keyboard, Mouse. Output
Requirement Standard Output Device : Color Monitor(60Hz) Software
Requirement Programming Language : C
Compiler Used : Visual C++ 2006/2008/2010/2012 Operating System :
Windows
HARDWARE REQUIREMENTS:
The hardware requirements are very minimal and the software can run on most
of the machines.
1. Main processor : Pentium 4
2. Processor Speed : 1000 MHz or More
3. RAM Size: 64 MB DDR or More
4. Keyboard : Standard QWERTY serial or PS/2 keyboard
5. Mouse : Standard serial or PS/2 mouse
6. Compatibility : AT/T compatible
7. Cache memory : 512 KB
CHAPTER 3 OPENGL FUNCTIONS
3.3 Basic Functions
1. glPushMatrix, glPopMatrix Function
The glPushMatrix and glPopMatrix functions push and pop the current
matrix stack. SYNTAX: void glPushMatrix();
void glPopMatrix(void); PARAMETERS: This function has no
parameters.
2. glColor3f Function
Sets the current color.
SYNTAX: void glColor3f(GLfloat red, GLfloat green, GLfloat blue);
3. glBegin, glEnd Function
The glBegin and glEnd functions delimit the vertices of a primitive or a
group of like primitives. SYNTAX: void glBegin, glEnd (GLenum
mode);
PARAMETERS: mode
The primitive or primitives that will be created from vertices presented
between glBegin and the subsequent glEnd. The following are accepted
symbolic constants and their meanings: GL_LINES: Treats each pair of
vertices as an independent line segment. Vertices 2n - 1 and 2n define
line n. N/2 lines are drawn.
GL_LINE_STRIP: Draws a connected group of
line segments from the first vertex to the last.
Vertices n and n+1 define line n. N - 1 lines are drawn.
GL_LINE_LOOP: Draws a connected group of line segments from the
first vertex to the last, then back to the first. Vertices n and n + 1 define
line n. The last line, however, is defined by vertices N and N lines are
drawn.
GL_TRIANGLES: Treats each triplet of vertices as an independent
triangle. Vertices 3n -2, 3n - 1, and 3n define triangle n. N/3 triangle are
drawn.
GL_QUADS: Treats each group of four vertices as an independent
quadrilateral. Vertices 4n - 3, 4n - 2, 4n - 1, and 4n defined quadrilateral
n. N/4 quadrilaterals are drawn.
3.1 Translation Functions
1. glTranslate
The glTranslated and glTranslatef functions multiply the current matrix by
the translation matrix.
Void glTranslate(x, y, z) ;
Parameters
x, y, z : The x, y, and z coordinates of a translation vector.
2. glRotate
The glRotated and glRotatef functions multiply the current matrix by a rotation
matrix. Void glRotate(Glfloat angle,Glfloat x,Glfloat y,Glfloat z);
Parameters
angle : The angle of rotation, in degrees. X: The x coordinate of a vector.
Y: The y coordinate of a vector. Z: The z coordinate of a vector.
Fig 3.2 Vertex Transformation
3.2 Functions Used To Display
1. glClear Function
The glClear function clears buffers to preset values.
SYNTAX: glClear(GLbitfield mask); PARAMETERS: mask
Bitwise OR operators of masks that indicate the buffers to be cleared. The four
masks are as follows.
Value Meaning
GL_COLOR_BUFFER_BIT The buffers currently enabled for
color writing. GL_DEPTH_BUFFER_BIT The depth buffer.
glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT);
2. glMatrixMode Function
The glMatrixMode function specifies which matrix is the current matrix.
SYNTAX: void glMatrixMode(GLenum mode);
PARAMETERS: mode
The matrix stack that is the target for subsequent matrix operations. The mode
parameter can assume one of three values:
matrix stack. glMatrixMode(GL_MODELVIEW);
Value Meaning
GL_MODELVIEW Applies subsequent matrix operations to the
modelview
matrix stack.
glMatrixMode(GL_MODELVIEW);
3. glLoadIdentity Function
The glLoadIdentity function replaces the current matrix with the identity
matrix. SYNTAX: void glLoadIdentity(void);
4. glutSwapBuffers
glutSwapBuffers swaps the buffers of the current window if double
buffered. SYNTAX: void glutSwapBuffers(void);
glutSwapBuffers();
5. glOrtho
 This function defines orthographic viewing volume with all parameters
measured from the centre of projection.
 multiply the current matrix by a perspective matrix.
SYNTAX: void glOrtho( GLdouble left, GLdouble right,
GLdouble bottom, GLdouble top, GLdouble near,
GLdouble far)
3.4 Functions Used To Reshape
1. glutDisplayFunc Function
glutDisplayFunc sets the display callback for the current window.
SYNTAX: void glutDisplayFunc(void (*func)(void));
PARAMETERS:
 func
The new display callback function.
 glutDisplayFunc(display);
3.5 Main Functions
3. glutInitDisplayMode Function
glutInitDisplayMode sets the initial display mode. SYNTAX: void
glutInitDisplayMode(unsigned int mode); PARAMETERS:
 mode
Display mode, normally the bitwise OR-ing of GLUT display mode bit masks. See
values below:
GLUT_RGB: An alias for GLUT_RGBA.
GLUT_DOUBLE: Bit mask to select a double buffered window. This overrides
GLUT_SINGLE if it is also specified.
GLUT_DEPTH: Bit mask to select a window with a depth buffer.
 glutInitDisplayMode(GLUT_RGB | GLUT_DEPTH | GLUT_DOUBLE);
2. glutInitWindowPosition, glutInitWindowSize Functions
glutInitWindowPosition and glutInitWindowSize set the initial window position
and size
. respectively.
SYNTAX: void glutInitWindowSize(int width, int height); void
glutInitWindowPosition(int x, int y);
PARAMETERS:
 width
Width in pixels.
 height
Height in pixels.
 x
Window X location in pixels.
 y
Window Y location in pixels.
 glutInitWindowSize(300,300);
1. glutMainLoop Function
glutMainLoop enters the GLUT event processing loop. SYNTAX: void
glutMainLoop(void);
 glutMainLoop(); glutStrokeCharacter
It renders the character with ASCII code char at the current raster position using
the stoke font. SYNTAX: Void glutStrokeCharacter(void* font, int char)
PARAMETERS:
Font: GLUT_STROKE_MONO_ROMAN & GLUT_STROKE_ROMAN.
3.6 Text Displaying Functions
1. GlRasterPos
glRasterPos specify the raster position for pixel operations.
Parameters
x,y, z, w
Specify the x, y, z, and w object coordinates (if present) for the raster position.
2. glutBitmapCharacter
glutBitmapCharacter renders a bitmap character using OpenGL. Syntax: void
glutBitmapCharacter(void *font, int character); The available fonts are:
GLUT_BITMAP_8_BY_13 GLUT_BITMAP_9_BY_15
GLUT_BITMAP_TIMES_ROMAN_10 GLUT_BITMAP_TIMES_ROMAN_24
3.7 Interactive Functions
glutKeyboardfunc FUNCTION
Registers the keyboard callback function func. The callback function returns the
ASCII code of the key pressed and the position of the mouse.
SYNTAX: void glutKeyboardFunc (void (*func) (unsigned char key, int x, int
y));
CHAPTER 4 IMPLEMENTATION
Tools Used:
OpenGL is an application program interface that is used to define 2D and 3D
computer graphics. This cross-platform API is generally considered to set the
standard in the computer industry when it comes to this type of interaction
with 2D computer graphics and has also become the usual tool for use with 3D
graphics as well. Short for Open Graphics Library, OpenGL eliminated the
need for programmers to rewrite the graphics section of an operating system
each time a business would upgrade to a new version of the system.
The basic function of OpenGL is to issue a specific collection of executable or
commands to the operating system. In doing so, the program works with the
existing graphics hardware that resides on the hard drive or other specified
source. Each command in the set is designed to engage a certain drawing
action, or launch a specific special effect associated with the graphics.
4.1 Implementation of User Defined Functions
User Defined Functions
The project contains several main user defined functions performing the
essential tasks for implementing the game. They include:
 boundHit( ) : Checks if the plane exceeds the boundary. bool
boundHit()
{
if(plane_mvmt+50>=100||plane_mvmt+50 <=18) return true;
else
return false;
}
 BuildingBlock( ) : Constructing the building. void buildingBlock()
{
b.block_x=50.0; srand(time(0)); b.no_floors = rand()%3+4; buildColor = rand()%3;
b.block_y=b.no_floors*10 +15; b.state=true;
s.state=false;
}
 buildingHit( ) : Checking if the airplane has crashed into the building. bool
buildingHit()
{
if (((int)b.block_x<=8 &&(int)b.block_x>=-7 && ((int)plane_mvmt+50)-
b.block_y<=3)) return true;
else if (((int)b.block_x<=10 &&(int)b.block_x>=-5 &&
((int)plane_mvmt+50)- b.block_y<=0))
return true;
else if(((int)b.block_x<=6 &&(int)b.block_x>=-3 &&
((int)plane_mvmt+47)- b.block_y<=0)) return true;
else if(((int)b.block_x<=4 &&(int)b.block_x>=-4 &&
((int)plane_mvmt+47)- b.block_y<=3))
}
}
Built in Functions:
void glBegin(glEnum mode):
Initiates a new primitive of type mode and starts the collection of vertices. Values
of mode include GL_POINTS, GL_LINES and GL_POLYGON.
void glEnd( ):
Terminates a list of vertices.
void glColor3f[ i f d ] (TYPE r, TYPE g, TYPE b):
Sets the present RGB colors. Valid types are int( i ), float ( f ) and double ( d ).
The maximum and minimum values of the floating-point types are 1.0 and 0.0,
respectively.
void glClearColor(GLclampf r, GLclampf g, GLclampf b, GLclampf a):
Sets the present RGBA clear color used when clearing the color buffer.
Variables of GLclampf are floating-point numbers between 0.0 and 1.0.
int glutCeateWindow(char *title):
Creates a window on the display. The string title can be used to label the
window. The return value provides a reference to the window that can be
used where there are multiple windows.
void glutInitWindowSize(int width, int height):
Specifies the initial height and width of the window in pixels.
void glutInitWindowPosition(int x, int y) :
Specifies the initial position of the top-left corner of the window in pixels.
void glutInitDisplayMode(unsigned int mode):
Request a display with the properties in mode. The value of mode is
determined by the logical OR of operation including the color model
(GLUT_RGB, GLUT_INDEX) and buffering (GLUT_SINGLE,
GLUT_DOUBLE).
void glFlush( ):
Forces any buffered any OpenGL commands to execute.
void glutInit (intargc, char **argv):
Initializes GLUT. The arguments from main are passed in and can be used
by the application.
void glutMainLoop( ):
Cause the program to enter an event processing loop. It should be the last statement
in main.
void glutDisplayFunc(void (*func) (void)):
Registers the display function func that is executed when the window needs to be
redrawn.
void glutBitmapCharacter(void *font, int char):
Renders the character with ASCII code char at the current raster position using the
raster font given by font. Fonts include GLUT_BITMAP_TIMES_ROMAN_10
and GLUT_BITMAP_TIMES_ROMAN_24 etc. The raster position is incremented
by the width of the character.
void glClear(GL_COLOR_BUFFER_BIT):
To make the screen solid and white.
void glutpostRedisplay():
Registers the display function that is executed when the window needs to be
redrawn.
void LoadIdentity():
Sets the current transformation matrix to an identity matrix.
void glEnable(glenum features):
Enables the opengl features.
void glMatrixMode(glenum mode):
Specifies which matrix will be affected by subsequent transformations.
void glViewport(intx,inty,GLsizeiwidth,GLsizei height):
Specifies a width*height viewport in pixel whose lower left corner is at
(x,y) measured from the origin of the window.
void glutBitmapCharacter(void *font, int char):
Renders the character with ASCII code char at the current raster
position using the raster font given by font. Fonts include
GLUT_BITMAP_TIMES_ROMAN_10 and
GLUT_BITMAP_TIMES_ROMAN_24 etc. The raster position is
incremented by the width of the character.
CHAPTER 5 RESULTS AND SNAP SHOTS
Fig 5.1 Screen with Menu
The start screen has four options:
1. Play – starts the game.
2. Instructions – Displays the instructions to play the game.
3. About – Details of the student.
4. Exit – Exits from the screen.
Fig 5.2 Cloud as an obstacle
The plane has to6 escape the cloud/building using mouse interaction. By
pressing the left mouse button, the plane moves upwards and escapes from
the cloud/building. If the plane collides with the cloud/building, the game
ends.
Fig 5.3 Building as an obstacle
Fig 5.4 Game over Screen
When the plane collides with the cloud/building, the game ends and the
game over screen appears. This screen shows the distance travelled by
the plane (in meters) and the levels completed.
By clicking on the Restart button, it goes back to the start screen and
you can choose among the four options.
CHAPTER 6 FUTURE ENHANCEMENT
The enhancements I would like to make for my project are as follows:
 Adding sound effects – for movement of the plane, collision of the plane
with cloud/building, level up, background music, plane crashing the
boundaries etc.
 Additional obstacles – like birds, hot air balloons, kites etc.
 Adding collectables – like coins and boosters to buy new parts for the plane
and other boosts.
 Adding missions and challenges – daily and weekly challenges, completing
missions for upgrades and power-ups.
 Customizing the plane – with the coins and boosts collected; customize the
plane with new parts for greater speed and control.
 Adding various backgrounds for differ levels – new backgrounds for each
new level unlocked.
 Adding more lives for the plane – each player can have a maximum of 3
lives before the game ends.
 Option to disable sound effects – an option to disable sound effects during
or before/after the game.
CHAPTER 7 CONCLUSION
The project ‘Airplane game’ implemented on Windows platform using C
was completed successfully. It involves various translating, scaling and
rotating effects effectively bringing out a simple animation. The utilities and
functions provided by the OpenGL have been used in an optimal way to
achieve a completely working project.
The work done during the process of completion of this project has helped
me understand the various functionalities available in a better and a more
practical environment and I realize that the scope of OpenGL platform has a
premier game developing launch pad. Hence it has indeed been useful in
developing many games. OpenGL in its own right is good for low cost and
simple game development. It serves as an important stepping stone for
venturing into other fields of Computer Graphics design and applications.
3D animation, modeling, gaming etc. are the next big things, and working
on this project has helped me learn the basics required for it. I have
implemented this project for entertainment purpose and this game is very
easy to play.
CHAPTER 8 BIBLIOGRAPHY AND REFERENCES
1. Kamal Acharya. Teacher record management system project
report. Authorea. August 02, 2024.
DOI: https://doi.org/10.22541/au.172261514.46787329/v1
2. Kamal Acharya. POST OFFICE MANAGEMENT SYSTEM PROJECT
REPORT. Authorea. August 02, 2024.
DOI: https://doi.org/10.22541/au.172261514.44494375/v1
3. Kamal Acharya. Fruit shop management system project
report. Authorea. August 02, 2024.
DOI: https://doi.org/10.22541/au.172261514.42227675/v1
4. Kamal Acharya. Dairy management system project
report. Authorea. August 02, 2024.
DOI: https://doi.org/10.22541/au.172261513.39402347/v1
5. Kamal Acharya. DATA COMMUNICATION AND COMPUTER
NETWORK MANAGEMENT SYSTEM PROJECT
REPORT. Authorea. August 01, 2024.
DOI: https://doi.org/10.22541/au.172254873.37480177/v1
6. Kamal Acharya. School management system project
report. Authorea. August 01, 2024.
DOI: https://doi.org/10.22541/au.172254873.34023165/v1
7. Kamal Acharya. A CASE STUDY OF CINEMA MANAGEMENT SYSTEM
PROJECT. Authorea. August 01, 2024.
DOI: https://doi.org/10.22541/au.172254873.30191075/v1
8. Kamal Acharya. Ludo management system project report. Authorea. July
31, 2024
DOI: https://doi.org/10.22541/au.172243999.98091616/v1
9. Kamal Acharya. Literature online quiz system project
report. Authorea. July 31, 2024
DOI: https://doi.org/10.22541/au.172243825.53562953/v1
10. Kamal Acharya. Avoid waste management system project. Authorea. July
29, 2024
DOI: https://doi.org/10.22541/au.172228528.85022205/v1
View publication stats
Ad

More Related Content

Similar to AN INTERNSHIP REPORT ON AIRPLANE GAME MANAGEMENT SYSTEM PROJECT REPORT. (20)

Bouncing ball content management system project report.pdf
Bouncing ball content management system project report.pdfBouncing ball content management system project report.pdf
Bouncing ball content management system project report.pdf
Kamal Acharya
 
Computer graphics workbook
Computer graphics workbookComputer graphics workbook
Computer graphics workbook
Muhammadalizardari
 
Ball Collecting game report
Ball Collecting game report Ball Collecting game report
Ball Collecting game report
Dileep Maurya
 
Arkanoid Game
Arkanoid GameArkanoid Game
Arkanoid Game
graphitech
 
COMPUTER GRAPHICS PROJECT REPORT
COMPUTER GRAPHICS PROJECT REPORTCOMPUTER GRAPHICS PROJECT REPORT
COMPUTER GRAPHICS PROJECT REPORT
vineet raj
 
Opengl basics
Opengl basicsOpengl basics
Opengl basics
pushpa latha
 
Ha4 displaying 3 d polygon animations
Ha4   displaying 3 d polygon animationsHa4   displaying 3 d polygon animations
Ha4 displaying 3 d polygon animations
JordanSmith96
 
Angel
AngelAngel
Angel
Chong Zhang
 
3 CG_U1_P2_PPT_3 OpenGL.pptx
3 CG_U1_P2_PPT_3 OpenGL.pptx3 CG_U1_P2_PPT_3 OpenGL.pptx
3 CG_U1_P2_PPT_3 OpenGL.pptx
ssuser255bf1
 
VisionizeBeforeVisulaize_IEVC_Final
VisionizeBeforeVisulaize_IEVC_FinalVisionizeBeforeVisulaize_IEVC_Final
VisionizeBeforeVisulaize_IEVC_Final
Masatsugu HASHIMOTO
 
Open gl
Open glOpen gl
Open gl
ch samaram
 
Computer Graphics with OpenGL presentation Slides.pptx
Computer Graphics with OpenGL presentation Slides.pptxComputer Graphics with OpenGL presentation Slides.pptx
Computer Graphics with OpenGL presentation Slides.pptx
AnandM62785
 
Dynamic sorting algorithm vizualizer.pdf
Dynamic sorting algorithm vizualizer.pdfDynamic sorting algorithm vizualizer.pdf
Dynamic sorting algorithm vizualizer.pdf
AgneshShetty
 
Polyline download and visualization over terrain models
Polyline download and visualization over terrain modelsPolyline download and visualization over terrain models
Polyline download and visualization over terrain models
graphitech
 
CityEngine-OpenDS
CityEngine-OpenDSCityEngine-OpenDS
CityEngine-OpenDS
Andra-Lidia Lezza
 
Seminar presentation on OpenGL
Seminar presentation on OpenGLSeminar presentation on OpenGL
Seminar presentation on OpenGL
Megha V
 
Introduction to 2D/3D Graphics
Introduction to 2D/3D GraphicsIntroduction to 2D/3D Graphics
Introduction to 2D/3D Graphics
Prabindh Sundareson
 
OpenGL Based Testing Tool Architecture for Exascale Computing
OpenGL Based Testing Tool Architecture for Exascale ComputingOpenGL Based Testing Tool Architecture for Exascale Computing
OpenGL Based Testing Tool Architecture for Exascale Computing
CSCJournals
 
3D Programming Basics: WebGL
3D Programming Basics: WebGL3D Programming Basics: WebGL
3D Programming Basics: WebGL
Globant
 
OpenGL Introduction
OpenGL IntroductionOpenGL Introduction
OpenGL Introduction
Jayant Mukherjee
 
Bouncing ball content management system project report.pdf
Bouncing ball content management system project report.pdfBouncing ball content management system project report.pdf
Bouncing ball content management system project report.pdf
Kamal Acharya
 
Ball Collecting game report
Ball Collecting game report Ball Collecting game report
Ball Collecting game report
Dileep Maurya
 
COMPUTER GRAPHICS PROJECT REPORT
COMPUTER GRAPHICS PROJECT REPORTCOMPUTER GRAPHICS PROJECT REPORT
COMPUTER GRAPHICS PROJECT REPORT
vineet raj
 
Ha4 displaying 3 d polygon animations
Ha4   displaying 3 d polygon animationsHa4   displaying 3 d polygon animations
Ha4 displaying 3 d polygon animations
JordanSmith96
 
3 CG_U1_P2_PPT_3 OpenGL.pptx
3 CG_U1_P2_PPT_3 OpenGL.pptx3 CG_U1_P2_PPT_3 OpenGL.pptx
3 CG_U1_P2_PPT_3 OpenGL.pptx
ssuser255bf1
 
VisionizeBeforeVisulaize_IEVC_Final
VisionizeBeforeVisulaize_IEVC_FinalVisionizeBeforeVisulaize_IEVC_Final
VisionizeBeforeVisulaize_IEVC_Final
Masatsugu HASHIMOTO
 
Computer Graphics with OpenGL presentation Slides.pptx
Computer Graphics with OpenGL presentation Slides.pptxComputer Graphics with OpenGL presentation Slides.pptx
Computer Graphics with OpenGL presentation Slides.pptx
AnandM62785
 
Dynamic sorting algorithm vizualizer.pdf
Dynamic sorting algorithm vizualizer.pdfDynamic sorting algorithm vizualizer.pdf
Dynamic sorting algorithm vizualizer.pdf
AgneshShetty
 
Polyline download and visualization over terrain models
Polyline download and visualization over terrain modelsPolyline download and visualization over terrain models
Polyline download and visualization over terrain models
graphitech
 
Seminar presentation on OpenGL
Seminar presentation on OpenGLSeminar presentation on OpenGL
Seminar presentation on OpenGL
Megha V
 
OpenGL Based Testing Tool Architecture for Exascale Computing
OpenGL Based Testing Tool Architecture for Exascale ComputingOpenGL Based Testing Tool Architecture for Exascale Computing
OpenGL Based Testing Tool Architecture for Exascale Computing
CSCJournals
 
3D Programming Basics: WebGL
3D Programming Basics: WebGL3D Programming Basics: WebGL
3D Programming Basics: WebGL
Globant
 

More from Kamal Acharya (20)

Software testing for project report system.
Software testing for project report system.Software testing for project report system.
Software testing for project report system.
Kamal Acharya
 
RESORT MANAGEMENT AND RESERVATION SYSTEM PROJECT REPORT.
RESORT MANAGEMENT AND RESERVATION SYSTEM PROJECT REPORT.RESORT MANAGEMENT AND RESERVATION SYSTEM PROJECT REPORT.
RESORT MANAGEMENT AND RESERVATION SYSTEM PROJECT REPORT.
Kamal Acharya
 
COURIER MANAGEMENT SYSTEM PROJECT REPORT.
COURIER MANAGEMENT SYSTEM PROJECT REPORT.COURIER MANAGEMENT SYSTEM PROJECT REPORT.
COURIER MANAGEMENT SYSTEM PROJECT REPORT.
Kamal Acharya
 
VACCINE MANAGEMENT SYSTEM PROJECT REPORT.
VACCINE MANAGEMENT SYSTEM PROJECT REPORT.VACCINE MANAGEMENT SYSTEM PROJECT REPORT.
VACCINE MANAGEMENT SYSTEM PROJECT REPORT.
Kamal Acharya
 
CHAT APPLICATION THROUGH CLIENT SERVER MANAGEMENT SYSTEM PROJECT REPORT
CHAT APPLICATION THROUGH CLIENT SERVER MANAGEMENT SYSTEM PROJECT REPORTCHAT APPLICATION THROUGH CLIENT SERVER MANAGEMENT SYSTEM PROJECT REPORT
CHAT APPLICATION THROUGH CLIENT SERVER MANAGEMENT SYSTEM PROJECT REPORT
Kamal Acharya
 
ONLINE BLOOD DONATION MANAGEMENT SYSTEM PROJECT REPORT.
ONLINE BLOOD DONATION MANAGEMENT SYSTEM PROJECT REPORT.ONLINE BLOOD DONATION MANAGEMENT SYSTEM PROJECT REPORT.
ONLINE BLOOD DONATION MANAGEMENT SYSTEM PROJECT REPORT.
Kamal Acharya
 
ONLINE COURSE REGISTER SYSTEM PROJECT REPORT.
ONLINE COURSE REGISTER SYSTEM PROJECT REPORT.ONLINE COURSE REGISTER SYSTEM PROJECT REPORT.
ONLINE COURSE REGISTER SYSTEM PROJECT REPORT.
Kamal Acharya
 
TOLL TEX MANAGEMENT SYSTEM PROJECT REPORT
TOLL TEX MANAGEMENT SYSTEM PROJECT REPORTTOLL TEX MANAGEMENT SYSTEM PROJECT REPORT
TOLL TEX MANAGEMENT SYSTEM PROJECT REPORT
Kamal Acharya
 
HEATH INSURANCE CLAIM MANAGEMENT SYSTEM PROJECT REPORT.
HEATH INSURANCE CLAIM MANAGEMENT SYSTEM PROJECT REPORT.HEATH INSURANCE CLAIM MANAGEMENT SYSTEM PROJECT REPORT.
HEATH INSURANCE CLAIM MANAGEMENT SYSTEM PROJECT REPORT.
Kamal Acharya
 
School management system project report.
School management system project report.School management system project report.
School management system project report.
Kamal Acharya
 
A CASE STUDY OF CINEMA MANAGEMENT SYSTEM PROJECT
A CASE STUDY OF CINEMA MANAGEMENT SYSTEM PROJECTA CASE STUDY OF CINEMA MANAGEMENT SYSTEM PROJECT
A CASE STUDY OF CINEMA MANAGEMENT SYSTEM PROJECT
Kamal Acharya
 
LUNDRY MANAGEMENT SYSTEM PROJECT REPORT.
LUNDRY MANAGEMENT SYSTEM PROJECT REPORT.LUNDRY MANAGEMENT SYSTEM PROJECT REPORT.
LUNDRY MANAGEMENT SYSTEM PROJECT REPORT.
Kamal Acharya
 
TEACHERS RECORD MANAGEMENT SYSTEM PROJECT REPORT.
TEACHERS RECORD MANAGEMENT SYSTEM PROJECT REPORT.TEACHERS RECORD MANAGEMENT SYSTEM PROJECT REPORT.
TEACHERS RECORD MANAGEMENT SYSTEM PROJECT REPORT.
Kamal Acharya
 
HALL BOOKING MANAGEMENT SYSTEM PROJECT REPORT
HALL BOOKING MANAGEMENT SYSTEM PROJECT REPORTHALL BOOKING MANAGEMENT SYSTEM PROJECT REPORT
HALL BOOKING MANAGEMENT SYSTEM PROJECT REPORT
Kamal Acharya
 
SCIENTIFIC CALCULATOR PROJECT REPORT REPORT
SCIENTIFIC CALCULATOR PROJECT REPORT REPORTSCIENTIFIC CALCULATOR PROJECT REPORT REPORT
SCIENTIFIC CALCULATOR PROJECT REPORT REPORT
Kamal Acharya
 
WATER SUPPLY MANAGEMENT SYSTEM PROJECT REPORT
WATER SUPPLY MANAGEMENT SYSTEM PROJECT REPORTWATER SUPPLY MANAGEMENT SYSTEM PROJECT REPORT
WATER SUPPLY MANAGEMENT SYSTEM PROJECT REPORT
Kamal Acharya
 
AN INTERNSHIP REPORT ON STUDENT FEEDBACK MANAGEMENT SYSTEM PROJECT
AN INTERNSHIP REPORT ON STUDENT FEEDBACK MANAGEMENT SYSTEM PROJECTAN INTERNSHIP REPORT ON STUDENT FEEDBACK MANAGEMENT SYSTEM PROJECT
AN INTERNSHIP REPORT ON STUDENT FEEDBACK MANAGEMENT SYSTEM PROJECT
Kamal Acharya
 
FLOWER SHOP BILLING MANAGEMENT SYSTEM PROJECT REPORT
FLOWER SHOP BILLING MANAGEMENT SYSTEM PROJECT REPORTFLOWER SHOP BILLING MANAGEMENT SYSTEM PROJECT REPORT
FLOWER SHOP BILLING MANAGEMENT SYSTEM PROJECT REPORT
Kamal Acharya
 
STUDENT INFORMATION MANAGEMENT SYSTEM PROJECT REPORT II
STUDENT INFORMATION MANAGEMENT SYSTEM PROJECT REPORT IISTUDENT INFORMATION MANAGEMENT SYSTEM PROJECT REPORT II
STUDENT INFORMATION MANAGEMENT SYSTEM PROJECT REPORT II
Kamal Acharya
 
ADVANCED HOSPITAL MANAGEMENT SYSTEM PROJECT REPORT
ADVANCED HOSPITAL MANAGEMENT SYSTEM PROJECT REPORTADVANCED HOSPITAL MANAGEMENT SYSTEM PROJECT REPORT
ADVANCED HOSPITAL MANAGEMENT SYSTEM PROJECT REPORT
Kamal Acharya
 
Software testing for project report system.
Software testing for project report system.Software testing for project report system.
Software testing for project report system.
Kamal Acharya
 
RESORT MANAGEMENT AND RESERVATION SYSTEM PROJECT REPORT.
RESORT MANAGEMENT AND RESERVATION SYSTEM PROJECT REPORT.RESORT MANAGEMENT AND RESERVATION SYSTEM PROJECT REPORT.
RESORT MANAGEMENT AND RESERVATION SYSTEM PROJECT REPORT.
Kamal Acharya
 
COURIER MANAGEMENT SYSTEM PROJECT REPORT.
COURIER MANAGEMENT SYSTEM PROJECT REPORT.COURIER MANAGEMENT SYSTEM PROJECT REPORT.
COURIER MANAGEMENT SYSTEM PROJECT REPORT.
Kamal Acharya
 
VACCINE MANAGEMENT SYSTEM PROJECT REPORT.
VACCINE MANAGEMENT SYSTEM PROJECT REPORT.VACCINE MANAGEMENT SYSTEM PROJECT REPORT.
VACCINE MANAGEMENT SYSTEM PROJECT REPORT.
Kamal Acharya
 
CHAT APPLICATION THROUGH CLIENT SERVER MANAGEMENT SYSTEM PROJECT REPORT
CHAT APPLICATION THROUGH CLIENT SERVER MANAGEMENT SYSTEM PROJECT REPORTCHAT APPLICATION THROUGH CLIENT SERVER MANAGEMENT SYSTEM PROJECT REPORT
CHAT APPLICATION THROUGH CLIENT SERVER MANAGEMENT SYSTEM PROJECT REPORT
Kamal Acharya
 
ONLINE BLOOD DONATION MANAGEMENT SYSTEM PROJECT REPORT.
ONLINE BLOOD DONATION MANAGEMENT SYSTEM PROJECT REPORT.ONLINE BLOOD DONATION MANAGEMENT SYSTEM PROJECT REPORT.
ONLINE BLOOD DONATION MANAGEMENT SYSTEM PROJECT REPORT.
Kamal Acharya
 
ONLINE COURSE REGISTER SYSTEM PROJECT REPORT.
ONLINE COURSE REGISTER SYSTEM PROJECT REPORT.ONLINE COURSE REGISTER SYSTEM PROJECT REPORT.
ONLINE COURSE REGISTER SYSTEM PROJECT REPORT.
Kamal Acharya
 
TOLL TEX MANAGEMENT SYSTEM PROJECT REPORT
TOLL TEX MANAGEMENT SYSTEM PROJECT REPORTTOLL TEX MANAGEMENT SYSTEM PROJECT REPORT
TOLL TEX MANAGEMENT SYSTEM PROJECT REPORT
Kamal Acharya
 
HEATH INSURANCE CLAIM MANAGEMENT SYSTEM PROJECT REPORT.
HEATH INSURANCE CLAIM MANAGEMENT SYSTEM PROJECT REPORT.HEATH INSURANCE CLAIM MANAGEMENT SYSTEM PROJECT REPORT.
HEATH INSURANCE CLAIM MANAGEMENT SYSTEM PROJECT REPORT.
Kamal Acharya
 
School management system project report.
School management system project report.School management system project report.
School management system project report.
Kamal Acharya
 
A CASE STUDY OF CINEMA MANAGEMENT SYSTEM PROJECT
A CASE STUDY OF CINEMA MANAGEMENT SYSTEM PROJECTA CASE STUDY OF CINEMA MANAGEMENT SYSTEM PROJECT
A CASE STUDY OF CINEMA MANAGEMENT SYSTEM PROJECT
Kamal Acharya
 
LUNDRY MANAGEMENT SYSTEM PROJECT REPORT.
LUNDRY MANAGEMENT SYSTEM PROJECT REPORT.LUNDRY MANAGEMENT SYSTEM PROJECT REPORT.
LUNDRY MANAGEMENT SYSTEM PROJECT REPORT.
Kamal Acharya
 
TEACHERS RECORD MANAGEMENT SYSTEM PROJECT REPORT.
TEACHERS RECORD MANAGEMENT SYSTEM PROJECT REPORT.TEACHERS RECORD MANAGEMENT SYSTEM PROJECT REPORT.
TEACHERS RECORD MANAGEMENT SYSTEM PROJECT REPORT.
Kamal Acharya
 
HALL BOOKING MANAGEMENT SYSTEM PROJECT REPORT
HALL BOOKING MANAGEMENT SYSTEM PROJECT REPORTHALL BOOKING MANAGEMENT SYSTEM PROJECT REPORT
HALL BOOKING MANAGEMENT SYSTEM PROJECT REPORT
Kamal Acharya
 
SCIENTIFIC CALCULATOR PROJECT REPORT REPORT
SCIENTIFIC CALCULATOR PROJECT REPORT REPORTSCIENTIFIC CALCULATOR PROJECT REPORT REPORT
SCIENTIFIC CALCULATOR PROJECT REPORT REPORT
Kamal Acharya
 
WATER SUPPLY MANAGEMENT SYSTEM PROJECT REPORT
WATER SUPPLY MANAGEMENT SYSTEM PROJECT REPORTWATER SUPPLY MANAGEMENT SYSTEM PROJECT REPORT
WATER SUPPLY MANAGEMENT SYSTEM PROJECT REPORT
Kamal Acharya
 
AN INTERNSHIP REPORT ON STUDENT FEEDBACK MANAGEMENT SYSTEM PROJECT
AN INTERNSHIP REPORT ON STUDENT FEEDBACK MANAGEMENT SYSTEM PROJECTAN INTERNSHIP REPORT ON STUDENT FEEDBACK MANAGEMENT SYSTEM PROJECT
AN INTERNSHIP REPORT ON STUDENT FEEDBACK MANAGEMENT SYSTEM PROJECT
Kamal Acharya
 
FLOWER SHOP BILLING MANAGEMENT SYSTEM PROJECT REPORT
FLOWER SHOP BILLING MANAGEMENT SYSTEM PROJECT REPORTFLOWER SHOP BILLING MANAGEMENT SYSTEM PROJECT REPORT
FLOWER SHOP BILLING MANAGEMENT SYSTEM PROJECT REPORT
Kamal Acharya
 
STUDENT INFORMATION MANAGEMENT SYSTEM PROJECT REPORT II
STUDENT INFORMATION MANAGEMENT SYSTEM PROJECT REPORT IISTUDENT INFORMATION MANAGEMENT SYSTEM PROJECT REPORT II
STUDENT INFORMATION MANAGEMENT SYSTEM PROJECT REPORT II
Kamal Acharya
 
ADVANCED HOSPITAL MANAGEMENT SYSTEM PROJECT REPORT
ADVANCED HOSPITAL MANAGEMENT SYSTEM PROJECT REPORTADVANCED HOSPITAL MANAGEMENT SYSTEM PROJECT REPORT
ADVANCED HOSPITAL MANAGEMENT SYSTEM PROJECT REPORT
Kamal Acharya
 
Ad

Recently uploaded (20)

Introduction to Zoomlion Earthmoving.pptx
Introduction to Zoomlion Earthmoving.pptxIntroduction to Zoomlion Earthmoving.pptx
Introduction to Zoomlion Earthmoving.pptx
AS1920
 
AI-assisted Software Testing (3-hours tutorial)
AI-assisted Software Testing (3-hours tutorial)AI-assisted Software Testing (3-hours tutorial)
AI-assisted Software Testing (3-hours tutorial)
Vəhid Gəruslu
 
Fort night presentation new0903 pdf.pdf.
Fort night presentation new0903 pdf.pdf.Fort night presentation new0903 pdf.pdf.
Fort night presentation new0903 pdf.pdf.
anuragmk56
 
Introduction to FLUID MECHANICS & KINEMATICS
Introduction to FLUID MECHANICS &  KINEMATICSIntroduction to FLUID MECHANICS &  KINEMATICS
Introduction to FLUID MECHANICS & KINEMATICS
narayanaswamygdas
 
Avnet Silica's PCIM 2025 Highlights Flyer
Avnet Silica's PCIM 2025 Highlights FlyerAvnet Silica's PCIM 2025 Highlights Flyer
Avnet Silica's PCIM 2025 Highlights Flyer
WillDavies22
 
15th International Conference on Computer Science, Engineering and Applicatio...
15th International Conference on Computer Science, Engineering and Applicatio...15th International Conference on Computer Science, Engineering and Applicatio...
15th International Conference on Computer Science, Engineering and Applicatio...
IJCSES Journal
 
π0.5: a Vision-Language-Action Model with Open-World Generalization
π0.5: a Vision-Language-Action Model with Open-World Generalizationπ0.5: a Vision-Language-Action Model with Open-World Generalization
π0.5: a Vision-Language-Action Model with Open-World Generalization
NABLAS株式会社
 
DT REPORT by Tech titan GROUP to introduce the subject design Thinking
DT REPORT by Tech titan GROUP to introduce the subject design ThinkingDT REPORT by Tech titan GROUP to introduce the subject design Thinking
DT REPORT by Tech titan GROUP to introduce the subject design Thinking
DhruvChotaliya2
 
new ppt artificial intelligence historyyy
new ppt artificial intelligence historyyynew ppt artificial intelligence historyyy
new ppt artificial intelligence historyyy
PianoPianist
 
Data Structures_Introduction to algorithms.pptx
Data Structures_Introduction to algorithms.pptxData Structures_Introduction to algorithms.pptx
Data Structures_Introduction to algorithms.pptx
RushaliDeshmukh2
 
theory-slides-for react for beginners.pptx
theory-slides-for react for beginners.pptxtheory-slides-for react for beginners.pptx
theory-slides-for react for beginners.pptx
sanchezvanessa7896
 
"Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G...
"Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G..."Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G...
"Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G...
Infopitaara
 
Explainable-Artificial-Intelligence-XAI-A-Deep-Dive (1).pptx
Explainable-Artificial-Intelligence-XAI-A-Deep-Dive (1).pptxExplainable-Artificial-Intelligence-XAI-A-Deep-Dive (1).pptx
Explainable-Artificial-Intelligence-XAI-A-Deep-Dive (1).pptx
MahaveerVPandit
 
Smart_Storage_Systems_Production_Engineering.pptx
Smart_Storage_Systems_Production_Engineering.pptxSmart_Storage_Systems_Production_Engineering.pptx
Smart_Storage_Systems_Production_Engineering.pptx
rushikeshnavghare94
 
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptxLidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
RishavKumar530754
 
Mathematical foundation machine learning.pdf
Mathematical foundation machine learning.pdfMathematical foundation machine learning.pdf
Mathematical foundation machine learning.pdf
TalhaShahid49
 
Reagent dosing (Bredel) presentation.pptx
Reagent dosing (Bredel) presentation.pptxReagent dosing (Bredel) presentation.pptx
Reagent dosing (Bredel) presentation.pptx
AlejandroOdio
 
Degree_of_Automation.pdf for Instrumentation and industrial specialist
Degree_of_Automation.pdf for  Instrumentation  and industrial specialistDegree_of_Automation.pdf for  Instrumentation  and industrial specialist
Degree_of_Automation.pdf for Instrumentation and industrial specialist
shreyabhosale19
 
MAQUINARIA MINAS CEMA 6th Edition (1).pdf
MAQUINARIA MINAS CEMA 6th Edition (1).pdfMAQUINARIA MINAS CEMA 6th Edition (1).pdf
MAQUINARIA MINAS CEMA 6th Edition (1).pdf
ssuser562df4
 
some basics electrical and electronics knowledge
some basics electrical and electronics knowledgesome basics electrical and electronics knowledge
some basics electrical and electronics knowledge
nguyentrungdo88
 
Introduction to Zoomlion Earthmoving.pptx
Introduction to Zoomlion Earthmoving.pptxIntroduction to Zoomlion Earthmoving.pptx
Introduction to Zoomlion Earthmoving.pptx
AS1920
 
AI-assisted Software Testing (3-hours tutorial)
AI-assisted Software Testing (3-hours tutorial)AI-assisted Software Testing (3-hours tutorial)
AI-assisted Software Testing (3-hours tutorial)
Vəhid Gəruslu
 
Fort night presentation new0903 pdf.pdf.
Fort night presentation new0903 pdf.pdf.Fort night presentation new0903 pdf.pdf.
Fort night presentation new0903 pdf.pdf.
anuragmk56
 
Introduction to FLUID MECHANICS & KINEMATICS
Introduction to FLUID MECHANICS &  KINEMATICSIntroduction to FLUID MECHANICS &  KINEMATICS
Introduction to FLUID MECHANICS & KINEMATICS
narayanaswamygdas
 
Avnet Silica's PCIM 2025 Highlights Flyer
Avnet Silica's PCIM 2025 Highlights FlyerAvnet Silica's PCIM 2025 Highlights Flyer
Avnet Silica's PCIM 2025 Highlights Flyer
WillDavies22
 
15th International Conference on Computer Science, Engineering and Applicatio...
15th International Conference on Computer Science, Engineering and Applicatio...15th International Conference on Computer Science, Engineering and Applicatio...
15th International Conference on Computer Science, Engineering and Applicatio...
IJCSES Journal
 
π0.5: a Vision-Language-Action Model with Open-World Generalization
π0.5: a Vision-Language-Action Model with Open-World Generalizationπ0.5: a Vision-Language-Action Model with Open-World Generalization
π0.5: a Vision-Language-Action Model with Open-World Generalization
NABLAS株式会社
 
DT REPORT by Tech titan GROUP to introduce the subject design Thinking
DT REPORT by Tech titan GROUP to introduce the subject design ThinkingDT REPORT by Tech titan GROUP to introduce the subject design Thinking
DT REPORT by Tech titan GROUP to introduce the subject design Thinking
DhruvChotaliya2
 
new ppt artificial intelligence historyyy
new ppt artificial intelligence historyyynew ppt artificial intelligence historyyy
new ppt artificial intelligence historyyy
PianoPianist
 
Data Structures_Introduction to algorithms.pptx
Data Structures_Introduction to algorithms.pptxData Structures_Introduction to algorithms.pptx
Data Structures_Introduction to algorithms.pptx
RushaliDeshmukh2
 
theory-slides-for react for beginners.pptx
theory-slides-for react for beginners.pptxtheory-slides-for react for beginners.pptx
theory-slides-for react for beginners.pptx
sanchezvanessa7896
 
"Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G...
"Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G..."Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G...
"Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G...
Infopitaara
 
Explainable-Artificial-Intelligence-XAI-A-Deep-Dive (1).pptx
Explainable-Artificial-Intelligence-XAI-A-Deep-Dive (1).pptxExplainable-Artificial-Intelligence-XAI-A-Deep-Dive (1).pptx
Explainable-Artificial-Intelligence-XAI-A-Deep-Dive (1).pptx
MahaveerVPandit
 
Smart_Storage_Systems_Production_Engineering.pptx
Smart_Storage_Systems_Production_Engineering.pptxSmart_Storage_Systems_Production_Engineering.pptx
Smart_Storage_Systems_Production_Engineering.pptx
rushikeshnavghare94
 
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptxLidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
RishavKumar530754
 
Mathematical foundation machine learning.pdf
Mathematical foundation machine learning.pdfMathematical foundation machine learning.pdf
Mathematical foundation machine learning.pdf
TalhaShahid49
 
Reagent dosing (Bredel) presentation.pptx
Reagent dosing (Bredel) presentation.pptxReagent dosing (Bredel) presentation.pptx
Reagent dosing (Bredel) presentation.pptx
AlejandroOdio
 
Degree_of_Automation.pdf for Instrumentation and industrial specialist
Degree_of_Automation.pdf for  Instrumentation  and industrial specialistDegree_of_Automation.pdf for  Instrumentation  and industrial specialist
Degree_of_Automation.pdf for Instrumentation and industrial specialist
shreyabhosale19
 
MAQUINARIA MINAS CEMA 6th Edition (1).pdf
MAQUINARIA MINAS CEMA 6th Edition (1).pdfMAQUINARIA MINAS CEMA 6th Edition (1).pdf
MAQUINARIA MINAS CEMA 6th Edition (1).pdf
ssuser562df4
 
some basics electrical and electronics knowledge
some basics electrical and electronics knowledgesome basics electrical and electronics knowledge
some basics electrical and electronics knowledge
nguyentrungdo88
 
Ad

AN INTERNSHIP REPORT ON AIRPLANE GAME MANAGEMENT SYSTEM PROJECT REPORT.

  • 1. See discussions, stats, and author profiles for this publication at: https://www.researchgate.net/publication/383399489 AN INTERNSHIP REPORT ON AIRPLANE GAME MANAGEMENT SYSTEM PROJECT REPORT. Research Proposal · January 2024 DOI: 10.13140/RG.2.2.34738.41925 CITATIONS 0 READS 24 1 author: Kamal Acharya Tribhuvan University 248 PUBLICATIONS 4,437 CITATIONS SEE PROFILE All content following this page was uploaded by Kamal Acharya on 25 August 2024. The user has requested enhancement of the downloaded file.
  • 2. AN INTERNSHIP REPORT ON AIRPLANE GAME MANAGEMENT SYSTEM PROJECT BY KAMAL ACHARYA (Tribhuvan University) Date: 2024/01/23 ABSTRACT Graphics provides one of the most natural means of communicating with a computer, since our highly developed 2D and 3D pattern recognition allow us to perceive and process pictorialdata rapidly and efficiently. Interactive computer graphics is the most important means of producing the pictures since the invention of photography and television. It has the added advantage that with the computer we can make pictures not only of concrete real world objects butalso of abstract such as survey results. This project is a collision evasion process implemented in the form of a game. Here the useris allowed to control the movement of the plane through a collision course. The objective is to evade the obstacles and travel as far as possible. The plane’s upward movement is controlled by the left mouse button. Holding and pressing the left mouse button takes the plane higher and releasing the button results in the plane descending down. As the distance covered increases the speed of the plane increases. The main obstacles are buildings and clouds. The user must make sure that no part of the plane touches either the clouds or the buildings. The plane is also equippedwith a booster which the user can activate with the right mouse button. The booster makes the plane travel at a faster pace. The booster gets depleted when being used and replenishes gradually when not used. At any instance the user can pause the game by pressing ”p” on the keyboard. Pressing the key again will resume the game. The library glut.h is utilized in the implementationof the game as it provides a wide range of options to draw the necessary shapes. Keywords :Computer programming, Project management, Computer engineering
  • 3. CONTENTS CHAPTER TITLE PAGE NO 1 Introduction 1 2 Requirement Analysis 5 3 OpenGL Functions 6 4 Implementation 12 5 Results and Snapshots 34 6 Future Enhancement 37 7 Conclusion 38 Bibliography 39 CHAPTER 1 INTRODUCTION 1.1 Introduction to Computer Graphics Before the invention of computer graphics people used to display the information manually either by drawing or creating model which resembles real environment. For example the Greeks were able to convey their architectural ideas graphically using drawing. Today the same type of information is generated by architects, mechanical engineers and draftsman using computer based graphics system. Our interaction with computers has become dominated by a visual paradigm that includes windows, icons, menus and a pointing device, such as a mouse. From a user’s Perspective, windowing system such as the X windows system, Microsoft’s Windows. Although we are familiar with the style of graphical user interface used on most workstations, advances in computer graphics have made possible other forms of interfaces. Fig 1.1 A Graphics System
  • 4. 1.5 Introduction to OpenGL API OpenGL’s structure is similar to that of most modern API’s any effort that you put into learning OpenGL will carry over to other software systems. OpenGL is easy to learn compared with other API’s, it support two and three dimensional programs that we develop. OpenGL provides the programmer with an interface to graphics hardware. It is a powerful, low- level rendering and modeling software library, available on all major platforms, with wide hardware support. Most of our applications will be designed to access OpenGL directly through functions in three libraries they are as follows: 1. GLU 2. GL 3. GLUT The main GL libraries usually have function that begins with the letters gl. The OpenGL Utility Library (GLU) uses gl functions but contains code for creating common objects and simplifying viewing. To interface with the window system and to get input from external devices into our programs we need at least one more library. For each major window system there is a system- specific library that provides the glue between the window system and OpenGL that library is OpenGL Utility Toolkit (GLUT). 1.2 OpenGL supports two classes of primitives: 1 Geometric primitives 2 Image or raster primitives Geometric primitive are specified in the problem domain and include points, line segments, polygons, curves, and surfaces. Raster primitives are those which are displayed using array of pixels, it is difficult to manipulate raster primitive objects. OpenGL provide various viewing function that helps us to develop various views of single object, and the way in which it appears on screen. OpenGL default view is the orthographic projection. OpenGL also provide various transformation functions with the help of these functions user can render its object at the desired location on the screen. In OpenGL we obtain viewing and modeling functionality through a small set of transformation functions. We can even rotate the object along desired locations and with the desired angle on the screen. 1.3 OpenGL OpenGL provides a set of commands to render a three dimensional scene. That means you provide the data in an OpenGL-useable form and OpenGL will show this data on the screen (render it). It is developed by many companies and it is free to use. OpenGL is a hardware- and system-independent interface. An OpenGL-application will work on every platform, as long as there is an installed implementation. Because it is system independent, there are no functions to create windows etc., but there are helper functions for each platform. A very useful thing is GLUT. 1.4 GLUT GLUT is a complete API written by Mark Kilgard which lets you create windows and handle the messages. It exists for several platforms, that means that a program which uses GLUT can be compiled on many platforms without (or at least with very few) changes in the code.
  • 5. 1.6 OpenGL architecture OpenGL is a collection of several hundred functions providing access to all the features offered by your graphics hardware. Internally, it acts as a state machine--a collection of states that tells OpenGL what to do. Using the API, you can set various aspects of the state machine, including such things as the current color, lighting, blending, and so on. When rendering, everything drawn is affected by the current settings of the state machine. It's important to be aware of what the various states are, and the effect they have, because it's not uncommon to have unexpected results due to having one or more states set incorrectly. At the core of OpenGL is the rendering pipeline as shown in Figure. Fig 1.3 The OpenGL rendering pipeline 1.1 How does OpenGL work? OpenGL bases on the state variables. There are many values, for example the color, that remain after being specified. There are no classes like in DirectX. However, it is logically structured. OpenGL provides its own data types. They all begin with "GL". For example- GLfloat, GLint and so on. There are also many symbolic constants; they all begin with "GL_", like GL_POINTS, GL_POLYGON. CHAPTER 2 REQUIREMENTS ANALYSIS 2.1 RESOURCE REQUIREMENTS The requirement analysis phase of the project can be classified into:  Software Requirements  Hardware Requirements SOFTWARE REQUIREMENTS: Input Requirement Standard Input Device :Keyboard, Mouse. Output Requirement Standard Output Device : Color Monitor(60Hz) Software Requirement Programming Language : C Compiler Used : Visual C++ 2006/2008/2010/2012 Operating System : Windows HARDWARE REQUIREMENTS: The hardware requirements are very minimal and the software can run on most of the machines. 1. Main processor : Pentium 4 2. Processor Speed : 1000 MHz or More 3. RAM Size: 64 MB DDR or More 4. Keyboard : Standard QWERTY serial or PS/2 keyboard 5. Mouse : Standard serial or PS/2 mouse 6. Compatibility : AT/T compatible 7. Cache memory : 512 KB
  • 6. CHAPTER 3 OPENGL FUNCTIONS 3.3 Basic Functions 1. glPushMatrix, glPopMatrix Function The glPushMatrix and glPopMatrix functions push and pop the current matrix stack. SYNTAX: void glPushMatrix(); void glPopMatrix(void); PARAMETERS: This function has no parameters. 2. glColor3f Function Sets the current color. SYNTAX: void glColor3f(GLfloat red, GLfloat green, GLfloat blue); 3. glBegin, glEnd Function The glBegin and glEnd functions delimit the vertices of a primitive or a group of like primitives. SYNTAX: void glBegin, glEnd (GLenum mode); PARAMETERS: mode The primitive or primitives that will be created from vertices presented between glBegin and the subsequent glEnd. The following are accepted symbolic constants and their meanings: GL_LINES: Treats each pair of vertices as an independent line segment. Vertices 2n - 1 and 2n define line n. N/2 lines are drawn. GL_LINE_STRIP: Draws a connected group of line segments from the first vertex to the last. Vertices n and n+1 define line n. N - 1 lines are drawn. GL_LINE_LOOP: Draws a connected group of line segments from the first vertex to the last, then back to the first. Vertices n and n + 1 define line n. The last line, however, is defined by vertices N and N lines are drawn. GL_TRIANGLES: Treats each triplet of vertices as an independent triangle. Vertices 3n -2, 3n - 1, and 3n define triangle n. N/3 triangle are drawn. GL_QUADS: Treats each group of four vertices as an independent quadrilateral. Vertices 4n - 3, 4n - 2, 4n - 1, and 4n defined quadrilateral n. N/4 quadrilaterals are drawn. 3.1 Translation Functions 1. glTranslate The glTranslated and glTranslatef functions multiply the current matrix by the translation matrix. Void glTranslate(x, y, z) ; Parameters x, y, z : The x, y, and z coordinates of a translation vector. 2. glRotate The glRotated and glRotatef functions multiply the current matrix by a rotation matrix. Void glRotate(Glfloat angle,Glfloat x,Glfloat y,Glfloat z); Parameters angle : The angle of rotation, in degrees. X: The x coordinate of a vector. Y: The y coordinate of a vector. Z: The z coordinate of a vector. Fig 3.2 Vertex Transformation 3.2 Functions Used To Display 1. glClear Function The glClear function clears buffers to preset values. SYNTAX: glClear(GLbitfield mask); PARAMETERS: mask Bitwise OR operators of masks that indicate the buffers to be cleared. The four masks are as follows. Value Meaning GL_COLOR_BUFFER_BIT The buffers currently enabled for color writing. GL_DEPTH_BUFFER_BIT The depth buffer. glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT); 2. glMatrixMode Function The glMatrixMode function specifies which matrix is the current matrix. SYNTAX: void glMatrixMode(GLenum mode); PARAMETERS: mode The matrix stack that is the target for subsequent matrix operations. The mode parameter can assume one of three values: matrix stack. glMatrixMode(GL_MODELVIEW);
  • 7. Value Meaning GL_MODELVIEW Applies subsequent matrix operations to the modelview matrix stack. glMatrixMode(GL_MODELVIEW); 3. glLoadIdentity Function The glLoadIdentity function replaces the current matrix with the identity matrix. SYNTAX: void glLoadIdentity(void); 4. glutSwapBuffers glutSwapBuffers swaps the buffers of the current window if double buffered. SYNTAX: void glutSwapBuffers(void); glutSwapBuffers(); 5. glOrtho  This function defines orthographic viewing volume with all parameters measured from the centre of projection.  multiply the current matrix by a perspective matrix. SYNTAX: void glOrtho( GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble near, GLdouble far) 3.4 Functions Used To Reshape 1. glutDisplayFunc Function glutDisplayFunc sets the display callback for the current window. SYNTAX: void glutDisplayFunc(void (*func)(void)); PARAMETERS:  func The new display callback function.  glutDisplayFunc(display); 3.5 Main Functions 3. glutInitDisplayMode Function glutInitDisplayMode sets the initial display mode. SYNTAX: void glutInitDisplayMode(unsigned int mode); PARAMETERS:  mode Display mode, normally the bitwise OR-ing of GLUT display mode bit masks. See values below: GLUT_RGB: An alias for GLUT_RGBA. GLUT_DOUBLE: Bit mask to select a double buffered window. This overrides GLUT_SINGLE if it is also specified. GLUT_DEPTH: Bit mask to select a window with a depth buffer.  glutInitDisplayMode(GLUT_RGB | GLUT_DEPTH | GLUT_DOUBLE); 2. glutInitWindowPosition, glutInitWindowSize Functions glutInitWindowPosition and glutInitWindowSize set the initial window position and size . respectively. SYNTAX: void glutInitWindowSize(int width, int height); void glutInitWindowPosition(int x, int y); PARAMETERS:  width Width in pixels.  height Height in pixels.  x Window X location in pixels.  y Window Y location in pixels.  glutInitWindowSize(300,300); 1. glutMainLoop Function glutMainLoop enters the GLUT event processing loop. SYNTAX: void glutMainLoop(void);  glutMainLoop(); glutStrokeCharacter
  • 8. It renders the character with ASCII code char at the current raster position using the stoke font. SYNTAX: Void glutStrokeCharacter(void* font, int char) PARAMETERS: Font: GLUT_STROKE_MONO_ROMAN & GLUT_STROKE_ROMAN. 3.6 Text Displaying Functions 1. GlRasterPos glRasterPos specify the raster position for pixel operations. Parameters x,y, z, w Specify the x, y, z, and w object coordinates (if present) for the raster position. 2. glutBitmapCharacter glutBitmapCharacter renders a bitmap character using OpenGL. Syntax: void glutBitmapCharacter(void *font, int character); The available fonts are: GLUT_BITMAP_8_BY_13 GLUT_BITMAP_9_BY_15 GLUT_BITMAP_TIMES_ROMAN_10 GLUT_BITMAP_TIMES_ROMAN_24 3.7 Interactive Functions glutKeyboardfunc FUNCTION Registers the keyboard callback function func. The callback function returns the ASCII code of the key pressed and the position of the mouse. SYNTAX: void glutKeyboardFunc (void (*func) (unsigned char key, int x, int y)); CHAPTER 4 IMPLEMENTATION Tools Used: OpenGL is an application program interface that is used to define 2D and 3D computer graphics. This cross-platform API is generally considered to set the standard in the computer industry when it comes to this type of interaction with 2D computer graphics and has also become the usual tool for use with 3D graphics as well. Short for Open Graphics Library, OpenGL eliminated the need for programmers to rewrite the graphics section of an operating system each time a business would upgrade to a new version of the system. The basic function of OpenGL is to issue a specific collection of executable or commands to the operating system. In doing so, the program works with the existing graphics hardware that resides on the hard drive or other specified source. Each command in the set is designed to engage a certain drawing action, or launch a specific special effect associated with the graphics. 4.1 Implementation of User Defined Functions User Defined Functions The project contains several main user defined functions performing the essential tasks for implementing the game. They include:  boundHit( ) : Checks if the plane exceeds the boundary. bool boundHit() { if(plane_mvmt+50>=100||plane_mvmt+50 <=18) return true; else return false; }
  • 9.  BuildingBlock( ) : Constructing the building. void buildingBlock() { b.block_x=50.0; srand(time(0)); b.no_floors = rand()%3+4; buildColor = rand()%3; b.block_y=b.no_floors*10 +15; b.state=true; s.state=false; }  buildingHit( ) : Checking if the airplane has crashed into the building. bool buildingHit() { if (((int)b.block_x<=8 &&(int)b.block_x>=-7 && ((int)plane_mvmt+50)- b.block_y<=3)) return true; else if (((int)b.block_x<=10 &&(int)b.block_x>=-5 && ((int)plane_mvmt+50)- b.block_y<=0)) return true; else if(((int)b.block_x<=6 &&(int)b.block_x>=-3 && ((int)plane_mvmt+47)- b.block_y<=0)) return true; else if(((int)b.block_x<=4 &&(int)b.block_x>=-4 && ((int)plane_mvmt+47)- b.block_y<=3)) } } Built in Functions: void glBegin(glEnum mode): Initiates a new primitive of type mode and starts the collection of vertices. Values of mode include GL_POINTS, GL_LINES and GL_POLYGON. void glEnd( ): Terminates a list of vertices. void glColor3f[ i f d ] (TYPE r, TYPE g, TYPE b): Sets the present RGB colors. Valid types are int( i ), float ( f ) and double ( d ). The maximum and minimum values of the floating-point types are 1.0 and 0.0, respectively. void glClearColor(GLclampf r, GLclampf g, GLclampf b, GLclampf a): Sets the present RGBA clear color used when clearing the color buffer. Variables of GLclampf are floating-point numbers between 0.0 and 1.0. int glutCeateWindow(char *title): Creates a window on the display. The string title can be used to label the window. The return value provides a reference to the window that can be used where there are multiple windows. void glutInitWindowSize(int width, int height): Specifies the initial height and width of the window in pixels. void glutInitWindowPosition(int x, int y) : Specifies the initial position of the top-left corner of the window in pixels. void glutInitDisplayMode(unsigned int mode): Request a display with the properties in mode. The value of mode is determined by the logical OR of operation including the color model (GLUT_RGB, GLUT_INDEX) and buffering (GLUT_SINGLE, GLUT_DOUBLE). void glFlush( ): Forces any buffered any OpenGL commands to execute. void glutInit (intargc, char **argv): Initializes GLUT. The arguments from main are passed in and can be used by the application.
  • 10. void glutMainLoop( ): Cause the program to enter an event processing loop. It should be the last statement in main. void glutDisplayFunc(void (*func) (void)): Registers the display function func that is executed when the window needs to be redrawn. void glutBitmapCharacter(void *font, int char): Renders the character with ASCII code char at the current raster position using the raster font given by font. Fonts include GLUT_BITMAP_TIMES_ROMAN_10 and GLUT_BITMAP_TIMES_ROMAN_24 etc. The raster position is incremented by the width of the character. void glClear(GL_COLOR_BUFFER_BIT): To make the screen solid and white. void glutpostRedisplay(): Registers the display function that is executed when the window needs to be redrawn. void LoadIdentity(): Sets the current transformation matrix to an identity matrix. void glEnable(glenum features): Enables the opengl features. void glMatrixMode(glenum mode): Specifies which matrix will be affected by subsequent transformations. void glViewport(intx,inty,GLsizeiwidth,GLsizei height): Specifies a width*height viewport in pixel whose lower left corner is at (x,y) measured from the origin of the window. void glutBitmapCharacter(void *font, int char): Renders the character with ASCII code char at the current raster position using the raster font given by font. Fonts include GLUT_BITMAP_TIMES_ROMAN_10 and GLUT_BITMAP_TIMES_ROMAN_24 etc. The raster position is incremented by the width of the character.
  • 11. CHAPTER 5 RESULTS AND SNAP SHOTS Fig 5.1 Screen with Menu The start screen has four options: 1. Play – starts the game. 2. Instructions – Displays the instructions to play the game. 3. About – Details of the student. 4. Exit – Exits from the screen. Fig 5.2 Cloud as an obstacle The plane has to6 escape the cloud/building using mouse interaction. By pressing the left mouse button, the plane moves upwards and escapes from the cloud/building. If the plane collides with the cloud/building, the game ends. Fig 5.3 Building as an obstacle Fig 5.4 Game over Screen When the plane collides with the cloud/building, the game ends and the game over screen appears. This screen shows the distance travelled by the plane (in meters) and the levels completed. By clicking on the Restart button, it goes back to the start screen and you can choose among the four options.
  • 12. CHAPTER 6 FUTURE ENHANCEMENT The enhancements I would like to make for my project are as follows:  Adding sound effects – for movement of the plane, collision of the plane with cloud/building, level up, background music, plane crashing the boundaries etc.  Additional obstacles – like birds, hot air balloons, kites etc.  Adding collectables – like coins and boosters to buy new parts for the plane and other boosts.  Adding missions and challenges – daily and weekly challenges, completing missions for upgrades and power-ups.  Customizing the plane – with the coins and boosts collected; customize the plane with new parts for greater speed and control.  Adding various backgrounds for differ levels – new backgrounds for each new level unlocked.  Adding more lives for the plane – each player can have a maximum of 3 lives before the game ends.  Option to disable sound effects – an option to disable sound effects during or before/after the game. CHAPTER 7 CONCLUSION The project ‘Airplane game’ implemented on Windows platform using C was completed successfully. It involves various translating, scaling and rotating effects effectively bringing out a simple animation. The utilities and functions provided by the OpenGL have been used in an optimal way to achieve a completely working project. The work done during the process of completion of this project has helped me understand the various functionalities available in a better and a more practical environment and I realize that the scope of OpenGL platform has a premier game developing launch pad. Hence it has indeed been useful in developing many games. OpenGL in its own right is good for low cost and simple game development. It serves as an important stepping stone for venturing into other fields of Computer Graphics design and applications. 3D animation, modeling, gaming etc. are the next big things, and working on this project has helped me learn the basics required for it. I have implemented this project for entertainment purpose and this game is very easy to play.
  • 13. CHAPTER 8 BIBLIOGRAPHY AND REFERENCES 1. Kamal Acharya. Teacher record management system project report. Authorea. August 02, 2024. DOI: https://doi.org/10.22541/au.172261514.46787329/v1 2. Kamal Acharya. POST OFFICE MANAGEMENT SYSTEM PROJECT REPORT. Authorea. August 02, 2024. DOI: https://doi.org/10.22541/au.172261514.44494375/v1 3. Kamal Acharya. Fruit shop management system project report. Authorea. August 02, 2024. DOI: https://doi.org/10.22541/au.172261514.42227675/v1 4. Kamal Acharya. Dairy management system project report. Authorea. August 02, 2024. DOI: https://doi.org/10.22541/au.172261513.39402347/v1 5. Kamal Acharya. DATA COMMUNICATION AND COMPUTER NETWORK MANAGEMENT SYSTEM PROJECT REPORT. Authorea. August 01, 2024. DOI: https://doi.org/10.22541/au.172254873.37480177/v1 6. Kamal Acharya. School management system project report. Authorea. August 01, 2024. DOI: https://doi.org/10.22541/au.172254873.34023165/v1 7. Kamal Acharya. A CASE STUDY OF CINEMA MANAGEMENT SYSTEM PROJECT. Authorea. August 01, 2024. DOI: https://doi.org/10.22541/au.172254873.30191075/v1 8. Kamal Acharya. Ludo management system project report. Authorea. July 31, 2024 DOI: https://doi.org/10.22541/au.172243999.98091616/v1 9. Kamal Acharya. Literature online quiz system project report. Authorea. July 31, 2024 DOI: https://doi.org/10.22541/au.172243825.53562953/v1 10. Kamal Acharya. Avoid waste management system project. Authorea. July 29, 2024 DOI: https://doi.org/10.22541/au.172228528.85022205/v1 View publication stats