Page 2 of 2

Posted: Mon Jan 08, 2007 9:08 am
by Silb
Usagi wrote:I don't have taste buds.
Why do you get stronge coffee for Christmas?

Posted: Mon Jan 08, 2007 9:21 am
by Usagi
To ensure that my faith does not waver in the face of heathens.

Or is it to ensure that my face does not waver in the faith of heathens?

I get them mixed up sometimes.

Posted: Mon Jan 08, 2007 3:28 pm
by rudel_ic
Whats stronge?

Posted: Mon Jan 08, 2007 7:39 pm
by Nayr
yea, I'm writing another app. I'm trying to remember the format from memory.

something like (if someone else wants to try):

Header:

Code: Select all

short v; // number of vertices
short t; // number of triangles
Data:

Code: Select all

(for each vertex)
{
float x;
float y;
float z;
}

(for each triangle)
{
short ref[3]; // index number for vertices
float u[3]; // u index
float v[3]; // v index
}
then some other stuff; but that's what I can't remember.

Posted: Mon Jan 08, 2007 8:12 pm
by pyros soul
I am so confused that BBQ is starting to become smarter than me.

Posted: Mon Jan 08, 2007 8:23 pm
by Nayr
I think something just went over my head. What?

[edit]you know you haven't been on the forum much when someone doesn't know who you are.

I might be the oldest active member aside from viking. Or has he gone too?[/edit]

Posted: Mon Jan 08, 2007 9:28 pm
by zip
Viking is still here, as am I :p
The format is:

Code: Select all

short vertexNum; 

short TriangleNum; 

float vertex[i].x, vertex[i].y, vertex[i].z; 
//where i is 0 to vertexNum-1 

int Triangles[i].vertex[0], Triangles[i].vertex[1], Triangles[i].vertex[2]; 
//where i is 0 to TriangleNum-1, and vertex[0] is the first vertex in
the triangle, vertex[1] the second, and so on

float Triangles[i].gx[0], Triangles[i].gx[1], Triangles[i].gx[2]; 
//where i is 0 to TriangleNum-1, and gx is the horizontal texture uv 

float Triangles[i].gy[0], Triangles[i].gy[1], Triangles[i].gy[2]; 
//where i is 0 to TriangleNum-1, and gy is the vertical texture uv

Posted: Mon Jan 08, 2007 10:02 pm
by wormguy
Silb wrote:
Usagi wrote:I don't have taste buds.
Why do you get stronge coffee for Christmas?
I think we our first official Wolfire Forum meme.

Posted: Mon Jan 08, 2007 11:46 pm
by Usagi
It's a stronge meme; I hope it continues to evolve, until it finally achieves Godhood in a can of coffee and gives me taste buds.

Posted: Tue Jan 09, 2007 3:23 am
by zip
Colicedus-is-a-walking-meme.

Posted: Tue Jan 09, 2007 4:04 am
by NightDevil
EAsy thing with the sword and I like it It looks Cool
http://img204.imageshack.us/my.php?imag ... 500aj9.png

Posted: Tue Jan 09, 2007 5:30 am
by Colicedus
zip wrote:Colicedus-is-a-walking-meme.
WTF is a Walking Meme? :? :evil: :?

Posted: Tue Jan 09, 2007 11:09 am
by Viking Zippy
Nayr wrote:I might be the oldest active member aside from viking. Or has he gone too?[/edit]
As Zip said, we're still here, though I've eased up on the post-happy-ness a bit ;) ... but if we're not counting David and Jeff, Loki's got the earliest registration date, and I think I've seen him post occasionally ...
Colicedus wrote:
zip wrote:Colicedus-is-a-walking-meme.
WTF is a Walking Meme? :? :evil: :?
According to a search result on Google, a walking meme is an "an idea, behavior, or usage that spreads from person to person within a group" ... but I still don't' know what stronge is :P

Posted: Tue Jan 09, 2007 7:05 pm
by leDoOd
^ See here for the full story:
http://www.wolfire.com/forum/viewtopic.php?t=1799

And Zip, how do we go about using that code? Is there a program or something else that you have to input that, or something?

Posted: Tue Jan 09, 2007 7:07 pm
by Nayr
no. That's just a format.

I'm pretty sure there's more to it than that, or one of the values was an int instead of a short, or something. Something was different.