Search Projects

Tuesday, May 19, 2015

3D Solar System OpenGL graphics program


We have seen many good programs on Solar System in OpenGL. Today we are going to present you a mode 3D modeled version of solar system graphics program. You might encountered the previous very simple solar system opengl program which remain at the top seen post on this blog. But this program is very much different as it includes many of the other space objects like stars and comets, also it has orbit and axis for each planet, which can be controlled by user. Also we can control the stars as well with keyboard.

Features of 3D OpenGL graphics program

This 3D graphics program is a very good project that can both be use for submitting at college's mini project or even in course for learning graphics. Unlike the previous solar system graphic project this program has many features.

Updating this post...........

For Code and Demo Contact at 8147656011 or whatsapp at 7022162923

Friday, May 15, 2015

Buy Project Report for any OpenGL Projects Mentioned

Hello  Fellow Readers!

We at OpenGL Projects works out to give you free source code for any of Computer graphics projects. We try hard to reach each of you via various platform including social media - Facebook, Google Plus etc, Comments, emails and whatsapp but due to time constraint and other works we are not able to reach you at the time. We ask for apology for not answering each of you. But you need to Understand our problem and hope you will.

We try hard to put source code easily downloadable but if you face problem we are sorry for it. Also we need feedback from you guys, which you all not providing to us. Try submit altered project so we can help other students as well in future. 

Now the main purpose of this post. Since we are busy in working we are not able to focus more on this blog. Most of you ask for source code, which we think is ok, but for report we hope that you are able to download a sample and do it your self. Our thought has gone wrong. So we decided to give services to those students who can't do it themselves. Also we don't have project report for all the projects. Since we need to devotee our precious time so we put a minimal fee for it. So now, you can Buy Project Report for any OpenGL Projects Mentioned in this blog.

Our new services includes -

  • Full Project Report on the OpenGL Projects (any) at Rs 500.
  • PPT creation for the Project (any) at Rs 200.
  • Video demo that helps line by line understanding of project at Rs 5000.
  • New Project(not on blog) with code and documentations (including videos) at Rs 10000.
  • Specific High Profile Project with code and documentations (including videos) starting at Rs 15000.
If you interested call 8147656011 or Whatsapp at 7022162923. Don't waste time on Fake calling and negotiations. 


Friday, May 8, 2015

OpenGL Tutorial in C/C++ For Doubly Linked List

There are many way by which you can learn OpenGL. Try Book from Edward Angle. You can also get many simple OpenGL tutorials in this blog as well.

Linked list is tough concept in C/C++. Today we are going to talk about it. There are mainly two kind of linked list - 
  1. Singly Linked list - The linked list that only one link node.
  2. Doubly Linked list - The linked list with two link node.
In the previous post we had already talk about the Singly Linked List, in this OpenGL Tutorial post we are going to learn about C/C++ For Doubly Linked List.

 Operation on Doubly Linked List

Like Singly Linked List many operations can be done on doubly linked list at both end of the node(both link). These are few doubly linked list operation which is given below –
  1. Creation
  2. Insert at Starting
  3. Insert at left
  4. Insert at Right
  5. Insert Front
  6. Insert Rear
  7. Delete at Left
  8. Delete at Right
  9. Delete Front
  10. Delete Rear
  11. Display
Before Going to the graphical OpenGL program for the Doubly Linked List, kindly refer to C program for Doubly Linked it first. If you understand it, then only go for opengl program.

Similar to the C++ Program, the Graphics program for Doubly Linked list also declare struct for three nodes – info, rlink, llink. Similar to Singly Linked List this program also takes input in different window while display in different window.


To display the node three simple rectangle has being drawn. These are linked with the line to other elements in the list. Drawing this in OpenGL is quite easy but need to understand the concept of C, so before going to this OpenGL tutorial program better read C program first.

Different menu has is given to user to choose the operation on the doubly linked list. Just need to right click and choose the Option. While Doing this kindly do slowly and do not do rubbish work else it might not work for you. This is not that effective graphics program but we can make it one window workable program as future enhancement.

Download Source code for Doubly Linked List OpenGL Tutorial Program