Jump to content


Atom

Member Since 19 May 2005
Offline Last Active Jul 30 2011 09:00 PM

Posts I've Made

In Topic: 39dll 2.5++ Extension

25 December 2008 - 09:43 AM

I looked at it, but i prefer my own which I created about half a year ago.
Its functions all start with d39_ so its easy to find them if you forgot the name of any.
I might as well post it right here. Here goes: http://gm3d-games.co...wnloads/d39.gex
Credit to 39ster (+ Atom , not necessary)

Edit: dllinit(1,1,1) is all you need if you want to initialize the dll, there is no need to include 39dll.dll

In Topic: Retrieving Z Values From Arrays

24 July 2007 - 12:51 PM

/*

x=the x-position you want to check

y=the y-position you want to check

height=the matrix of z-values

*/

nw=height[floor(x),floor(y)]

ne=height[floor(x+1),floor(y)]

sw=height[floor(x),floor(y+1)]

se=height[floor(x+1),floor(y+1)]

xx=x mod 1

yy=y mod 1

n=(ne-nw)*xx+nw

s=(se-sw)*xx+sw

z=(s-n)*yy+n

In Topic: Model Saving/loading

30 March 2007 - 12:30 PM

The solution is here.

In Topic: D3d_model_load

27 March 2007 - 03:15 PM

Your code didn't work either.
Did that work on your own pc?

In Topic: D3d_model_load

25 March 2007 - 07:37 PM

added another download link