Click here to Skip to main content
15,879,184 members
Articles / Programming Languages / C#
Article

Planet 3D (Alias GL Earth)

Rate me:
Please Sign up or sign in to vote.
4.97/5 (23 votes)
13 Nov 2006CPOL2 min read 116.6K   7.8K   76   26
OpenGL moving planet
Sample Image - planet3d.jpg

Introduction

The project exclusively uses the features found in VISUAL C# 2005 Express Edition.

Planet 3D is a companion to my Panorama contribution, that has already been posted there.

The demo is provided with several textures to create the stellar background and each of the planets.

Note: In order to keep the size of the ZIP file small, the provided textures are in low resolution mode (I have larger resolution that I can send on demand).

The control uses 3D polar coordinates, and either keyboard direction key or buttons to change the planet rotation angle.

You can also use the left mouse button while in the OpenGL control to rotate the planet.

Several classes and "user controls" help the creation of the skinned button and the dedicated trackbar.

Smooth zooming is used to enlarge or reduce the size of the planet while the stellar background is left unchanged.

Code Insight

SkinEngine.cs

This class is responsible for the drawing of skinned form and custom controls.

SkinButton.cs

User control to create skinned button using one single 5-image bitmap matching each of the button states: normal, down, disabled, focused, hover.
You can use either "standard" push button or shaped button with region.

SkinTrackbar.cs

User control to create a mouse only skinned track bar.
The thumb tracker can have any size or shape based on a provided bitmap.
The control orientation is based on the ratio between width and height; if width is larger than height then horizontal else vertical.
To help the user to figure the moving of the thumb track, the control draws a layered triangle over the background and uses a tooltip to show the current value.
You can inverse ranging swapping min/max values.

OpenGL.cs

Encapsulation of the OpenGL API being used.

Win32.cs

Encapsulation of the Win32 API being used.

GDImage.cs

Encapsulation of the GDImage API being used.
GDImage is a prerequisite to create OpenGL font and convert image to GL texture on the fly.

Comment

I hope you will like Planet 3D and perhaps learn a few things from it.

You will find more contributions on my Web site in the "C# corner" section.

History

  • 13th November, 2006: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer zapsolution
France France
I am a low level SDK programmer, focusing mainly on graphic imaging and multimedia applications.
I am using several languages, including C, C++, PowerBASIC, WinDev.
I wrote also a few demos in C#, but i never used DotNET in real code production.

Comments and Discussions

 
QuestionIt's a nice work. Pin
zongdejuo8-Jan-10 11:28
zongdejuo8-Jan-10 11:28 
AnswerRe: It's a nice work. Pin
zapsolution8-Jan-10 21:50
zapsolution8-Jan-10 21:50 
GeneralRe: It's a nice work. Pin
zongdejuo8-Jan-10 23:12
zongdejuo8-Jan-10 23:12 
GeneralRe: It's a nice work. Pin
zapsolution9-Jan-10 0:20
zapsolution9-Jan-10 0:20 
Use the DLL that was provided with the original C# project. Or the zip file that is provided in the "C# section" of my website www.zapsolution.com

Patrice Terrier
www.zapsolution.com

GeneralRe: It's a nice work. [modified] Pin
zongdejuo10-Jan-10 8:19
zongdejuo10-Jan-10 8:19 
GeneralRe: It's a nice work. Pin
zapsolution10-Jan-10 11:29
zapsolution10-Jan-10 11:29 
GeneralRe: It's a nice work. Pin
zongdejuo10-Jan-10 18:25
zongdejuo10-Jan-10 18:25 
GeneralRe: It's a nice work. Pin
zapsolution10-Jan-10 20:51
zapsolution10-Jan-10 20:51 
GeneralRe: It's a nice work. Pin
zongdejuo11-Jan-10 10:44
zongdejuo11-Jan-10 10:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.