Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - MrJackSparrow2

Pages: 1
1
Issues Help Desk / A few questions...
« on: August 30, 2008, 10:28:22 pm »
I am confused on how the compile system works. Is there a way to build a .c++ project then compile it in any compiler of your choice? If so, where is the file? BTW, if this is a possibility, does that mean we could use our own header files, etc? (By editing the source directly)

2
Issues Help Desk / When can we expect globals, and dll support?
« on: August 12, 2008, 03:36:18 am »
Will we be wait for R4, or R3.1?
Just wonderin how long this stuff will take.

3
Issues Help Desk / Current Available Functions.
« on: August 11, 2008, 09:18:55 pm »
Where can I find a list of all available usable functions? I don't think the progress page is up to date...

4
Function Peer Review / The formula for finding point_distance.
« on: May 29, 2008, 04:58:02 pm »
I'm sure you already have this, but i'm trying to help. :)

Code: [Select]
#include <math.h>

double point_distance(double x1,double y1,double x2,double y2)
{
       return (double) sqrt( ((x2-x1)*(x2-x1)) + ((y2-y1)*(y2-y1)) );
}

Pages: 1