Click here to Skip to main content
Licence CPOL
First Posted 17 Feb 2009
Views 19,584
Downloads 369
Bookmarked 36 times

3DHelper

By | 17 Feb 2009 | Article
Helper class to display 3D data
3DHelperDemo

Introduction

Ever had the problem to display 3D-related data? E.g. to display a 3D-curve in a Windows dialog window? Don't like to implement a whole DirectX/OpenGL class hierarchy?
There is a solution: The 3DHelper class!

More tools can be found on my homepage.

Background  

If you are familiar with 3D programming, you already might have used free/not so free libraries to perform the task of rendering 3D objects onto your screen.
The big (in my opinion!) drawback of that approach is: your code is getting more and more complicated to maintain and even understand. Not to mention portability.

Having just some files to be included into your project, performing all the necessary math-stuff to "get  3D" sounds too nice to be true? Now its real!

The Solution

The aim of the API described in this article is simply to help you to project 3D data into your 2D window.
Given a 3D point (e.g. a point being part of a nurbs-surface, a 3D function value, etc.) the API transforms this point and returns a coordinate pair representing a dot in your window. 

And the best - there is no sophisticated OpenGL/DirectX stuff involved. This is a pure software solution.

Using the Code 

To allow the API to help you, it needs some basic steps to be performed:

  1. Add a variable of type CMF3DHelper to your project.
  2. At start up (and after each resize event) call the CMF3DHelper::Initialize() function of your variable. (see 1.)
    This Initialize() function needs parameters:
    • A pointer to the device context (DC) of your window (used to get the window size)
    • The "cube" representing your data, represented by two vectors: vmin and vmax.
      All of your data points should lay inside that cube. Imagine something like a bounding cube, covering all your data points.
      Example in 2D: you need to display a curve of form y=sin(x) where x is between [-PI] and [+PI]. The result of that function is in range of [-1] up to [+1].
      Therefore you have to define the bounding box (2D!) using two corners:
      (-1, -PI) which is top left and 
      (+1, +PI) similar to bottom right.
    • A flag (bSupportTrackBall) to tell the API whether to perform rotation controlled by mouse or not. 
  3. For each data point to be calculated, call the RenderPoint() function. It returns the corresponding screen(=window) coordinates of your 3D data point.

The best to do is to check 3DHelperDemoSimple project. I reduced the code to the minimum (no checking code) to clarify the steps.
Open the 3DHelperDemoSimple project, and select the OnInitDialog method.

Only the lines below are added to the code generated by the wizard:    

    // Initialize the 3D system
    initialize(); 

The initialize function itself is implemented some lines below.
Steps performed:

  1. Initialize the API.
  2. Start the update timer, used to refresh the mouse (=rotation) information. In our case, the whole scene will be repainted each 25 milliseconds.
// Set up initial 3D system
void CMy3DHelperDemoSimpleDlg::initialize()
{
	CWnd *pTarget = GetDlgItem(IDC_STATIC_PLACEHOLDER);
	m_c3DHelper.Initialize(pTarget->GetDC(), NeHe::Vector(-2.0f, -2.0f, -2.0f), 
		NeHe::Vector(2.0f,2.0f,2.0f), TRUE);

	// Timer used to refresh "trackball" information
	SetTimer(1, 25, NULL);
}

Triggered by the timer, every 25 ms the OnTimer function will be entered.
Inside, the trackball position will be updated (UpdateTrackBall, which again needs the current DC as parameter), and the scene will be redrawn (redraw()).

void CMy3DHelperDemoSimpleDlg::OnTimer(UINT nIDEvent) 
{
	// Timer is used to refresh trackball information
	if(nIDEvent == 1) {
		KillTimer(nIDEvent); // Prevent timer "overlapping"
		m_c3DHelper.UpdateTrackBall
			(GetDlgItem(IDC_STATIC_PLACEHOLDER)->GetDC());
		redraw();
		SetTimer(1, 25, NULL); // Start timer for next redrawing round
	}
	CDialog::OnTimer(nIDEvent);
}

Redraw again is trivial. Just take your data point per point, call RenderPoint() for each of them and display the result using e.g. SetPixel() function.

The 3DHelperDemo project implements a more complex example.

Points of Interest 

I decided not to implement the whole math stuff by myself (think that is not a unique task...). So I have taken some matrix/vector code from NeHe (a GREAT site related to OpenGL, got my 5!).

To get a better idea on how OpenGL is implemented, I took a closer look at the free mesa implementation. This is a must for everyone interested in 3D implementation! 

Notes

Any feedback would be appreciated!

See more tools and updates on SoftwareHive.

History

  • 2009/02/14 - Initial release

License

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

About the Author

MikeTheDwarf

Business Analyst

Austria Austria

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralReading Pinmembermathewmefiu22:24 8 Jun '10  
GeneralRe: Reading PinmemberMikeTheDwarf1:14 9 Jun '10  
GeneralRe: Reading Pinmembermathewmefiu21:34 22 Jun '10  
GeneralRe: Reading PinmemberMikeTheDwarf0:59 23 Jun '10  
Questionuse in VB.net PinmemberGeneralBiSoN23:21 27 Feb '09  
AnswerRe: use in VB.net PinmemberMikeTheDwarf21:12 1 Mar '09  
GeneralRe: use in VB.net [modified] PinmemberGeneralBiSoN8:14 4 Mar '09  
GeneralRe: use in VB.net PinmemberMikeTheDwarf8:34 4 Mar '09  
GeneralRe: use in VB.net PinmemberGeneralBiSoN5:16 5 Mar '09  
befor you begin, i found that:
 
Height Mapping and Model Animation[^]
 
Thats near your Project and my needs.
Hm... but it looks it CANT load 8bit BMPs Frown | :(
( i m still testing)
 
And no source too...
I have the C# at a point it is "near" to be usefull (if it is i make a upload!) and can be placed in VB.
But i am to stupid for looking around.
I think i should explain what i am trying to do ^^
 
I have some HeightMap, some x-ray images and wanted to "walk around" to find some breaks or whatever.
The NON TEXTURED view is VERRY IMPORTANT because i think you can see something else than with it.
And WITH textures you can see some other thinks... argh you now what i mean ^^
 
In german there is a word for something that can EVERYTHING: Eierlegendewollmilchsau
in english may be: "jack of all trades butt master of none"
or from LEO[^]
"it is an animal which lays eggs, gives milk and wool etc - ie something that doesn't exist like the young guy with 30 years of specialized experience"
 
So I need everything -.-
Textures.. Grid... Movement...
I dont know why there is nothing outside there in a "lamer" programming language ^^
I DONT KNOW how much is possible for you and what is impossible with your method..
 
BUT GRET THANKS for your trouble (hope thats right Confused | :confused: )
GeneralRe: use in VB.net PinmemberMikeTheDwarf8:27 5 Mar '09  
GeneralSounds nice Pinmemberjohn wallis11:20 17 Feb '09  
GeneralRe: Sounds nice PinmemberMikeTheDwarf23:47 17 Feb '09  
GeneralRe: Sounds nice Pinmemberjohn wallis12:22 18 Feb '09  
GeneralRe: Sounds nice Pinmemberjohn wallis12:36 18 Feb '09  
AnswerRe: Sounds nice PinmemberMikeTheDwarf6:54 19 Feb '09  
JokeRe: Sounds nice Pinmemberjohn wallis0:34 20 Feb '09  
GeneralRe: Sounds nice PinmemberMikeTheDwarf5:46 20 Feb '09  

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

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120604.1 | Last Updated 17 Feb 2009
Article Copyright 2009 by MikeTheDwarf
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid