Click here to Skip to main content
15,897,181 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Unresolved token error Pin
73Zeppelin18-Jan-07 1:56
73Zeppelin18-Jan-07 1:56 
GeneralRe: Unresolved token error Pin
Cedric Moonen18-Jan-07 2:35
Cedric Moonen18-Jan-07 2:35 
GeneralRe: Unresolved token error Pin
73Zeppelin18-Jan-07 2:43
73Zeppelin18-Jan-07 2:43 
GeneralRe: Unresolved token error Pin
jhwurmbach18-Jan-07 2:47
jhwurmbach18-Jan-07 2:47 
GeneralRe: Unresolved token error Pin
73Zeppelin18-Jan-07 3:04
73Zeppelin18-Jan-07 3:04 
QuestionDereferencing an normal array [modified] Pin
zqueezy18-Jan-07 0:36
zqueezy18-Jan-07 0:36 
AnswerRe: Dereferencing an normal array Pin
Iain Clarke, Warrior Programmer18-Jan-07 1:54
Iain Clarke, Warrior Programmer18-Jan-07 1:54 
GeneralNONONO need still help! Pin
zqueezy18-Jan-07 4:35
zqueezy18-Jan-07 4:35 
nonono the normals have been calculated already!!! (via SSE-asm)
I stored them in a group.
so iterating:
<br />
if (ModelToDraw.shownormals)<br />
{<br />
	// Loop through the vertices and normals and draw the normal<br />
	for (int k = 0; k < ModelToDraw.Objects[i].numVerts * 3; k += 3)<br />
	{<br />
	// Draw a line between the vertex and the end of the normal<br />
		glBegin(GL_LINES);<br />
			glVertex3f(ModelToDraw.Objects[i].Vertexes[k],<br />
			ModelToDraw.Objects[i].Vertexes[k+1],<br />
			ModelToDraw.Objects[i].Vertexes[k+2]);<br />
			glVertex3f(ModelToDraw.Objects[i].Vertexes[k]+ModelToDraw.Objects[i].Normals[k],<br />
			ModelToDraw.Objects[i].Vertexes[k+1]+ModelToDraw.Objects[i].Normals[k+1],<br />
			ModelToDraw.Objects[i].Vertexes[k+2]+ModelToDraw.Objects[i].Normals[k+2]);<br />
		glEnd();<br />
	}<br />
}<br />

is no problem at all... just hopping around in the array like described above makes problems!
I don't want to calculate the normals again and again when I render the triangles!
GeneralRe: NONONO need still help! Pin
El Corazon18-Jan-07 4:58
El Corazon18-Jan-07 4:58 
AnswerRe: Dereferencing an normal array Pin
El Corazon18-Jan-07 5:20
El Corazon18-Jan-07 5:20 
GeneralWow Pin
zqueezy18-Jan-07 11:24
zqueezy18-Jan-07 11:24 
GeneralRe: Wow Pin
El Corazon18-Jan-07 11:43
El Corazon18-Jan-07 11:43 
QuestionHow to create nice toolbar in CDialog app Pin
PatrykDabrowski18-Jan-07 0:04
PatrykDabrowski18-Jan-07 0:04 
AnswerRe: How to create nice toolbar in CDialog app Pin
Nibu babu thomas18-Jan-07 0:28
Nibu babu thomas18-Jan-07 0:28 
AnswerRe: How to create nice toolbar in CDialog app Pin
Hamid_RT18-Jan-07 0:41
Hamid_RT18-Jan-07 0:41 
AnswerRe: How to create nice toolbar in CDialog app Pin
Hamid_RT18-Jan-07 6:27
Hamid_RT18-Jan-07 6:27 
AnswerRe: How to create nice toolbar in CDialog app Pin
Mark Salsbery18-Jan-07 6:32
Mark Salsbery18-Jan-07 6:32 
Questionthe exception breakpoint... Pin
shivapriyak18-Jan-07 0:03
shivapriyak18-Jan-07 0:03 
AnswerRe: the exception breakpoint... Pin
toxcct18-Jan-07 0:11
toxcct18-Jan-07 0:11 
QuestionNeed to help in file reading in win32 Pin
amitmistry_petlad 17-Jan-07 23:54
amitmistry_petlad 17-Jan-07 23:54 
AnswerRe: Need to help in file reading in win32 Pin
Roger Stoltz18-Jan-07 0:23
Roger Stoltz18-Jan-07 0:23 
GeneralRe: Need to help in file reading in win32 Pin
amitmistry_petlad 18-Jan-07 0:30
amitmistry_petlad 18-Jan-07 0:30 
GeneralRe: Need to help in file reading in win32 Pin
Roger Stoltz18-Jan-07 0:41
Roger Stoltz18-Jan-07 0:41 
GeneralRe: Need to help in file reading in win32 Pin
amitmistry_petlad 18-Jan-07 1:10
amitmistry_petlad 18-Jan-07 1:10 
GeneralRe: Need to help in file reading in win32 Pin
Roger Stoltz18-Jan-07 2:05
Roger Stoltz18-Jan-07 2:05 

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.