#include <stddef.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <stdio.h>
#include <math.h>
#include <float.h>
#include <ctype.h>
#include "dVector.h"
#include "dMatrix.h"
#include <Newton.h>
Defines | |
#define | _ASSERTE(x) |
#define | AFX_STDAFX_H__AE78B9E2_A5B8_11D4_A1FB_00500C0076C8__INCLUDED_ |
#define | ASSETS_PATH "newtonSDK/samples/bin" |
#define | dAbs(x) dFloat (fabs (dFloat(x))) |
#define | dAcos(x) dFloat (acos (dFloat(x))) |
#define | dAsin(x) dFloat (asin (dFloat(x))) |
#define | dAtan2(x, y) dFloat (atan2 (dFloat(x), dFloat(y))) |
#define | dCos(x) dFloat (cos (dFloat(x))) |
#define | dFloor(x) dFloat (floor (dFloat(x))) |
#define | dMod(x, y) dFloat (fmod (dFloat(x), dFloat(y))) |
#define | dSin(x) dFloat (sin (dFloat(x))) |
#define | dSqrt(x) dFloat (sqrt (dFloat(x))) |
#define | max(a, b) (a > b ? a : b) |
#define | min(a, b) (a < b ? a : b) |
#define | SWAP_INT16(x) x |
#define | SWAP_INT32(x) x |
Typedefs | |
typedef short | dInt16 |
typedef int | dInt32 |
typedef char | dInt8 |
typedef unsigned short | dUnsigned16 |
typedef unsigned int | dUnsigned32 |
typedef unsigned | dUnsigned32 |
typedef unsigned char | dUnsigned8 |
Functions | |
void | GetWorkingFileName (const char *name, char *outPathName) |
void | SWAP_FLOAT32_ARRAY (float *array, dInt32 count) |
#define _ASSERTE | ( | x | ) |
#define AFX_STDAFX_H__AE78B9E2_A5B8_11D4_A1FB_00500C0076C8__INCLUDED_ |
#define ASSETS_PATH "newtonSDK/samples/bin" |
#define dAbs | ( | x | ) | dFloat (fabs (dFloat(x))) |
#define dAcos | ( | x | ) | dFloat (acos (dFloat(x))) |
#define dAsin | ( | x | ) | dFloat (asin (dFloat(x))) |
#define dAtan2 | ( | x, | |||
y | ) | dFloat (atan2 (dFloat(x), dFloat(y))) |
#define dCos | ( | x | ) | dFloat (cos (dFloat(x))) |
#define dFloor | ( | x | ) | dFloat (floor (dFloat(x))) |
#define dMod | ( | x, | |||
y | ) | dFloat (fmod (dFloat(x), dFloat(y))) |
#define dSin | ( | x | ) | dFloat (sin (dFloat(x))) |
#define dSqrt | ( | x | ) | dFloat (sqrt (dFloat(x))) |
#define max | ( | a, | |||
b | ) | (a > b ? a : b) |
#define min | ( | a, | |||
b | ) | (a < b ? a : b) |
#define SWAP_INT16 | ( | x | ) | x |
#define SWAP_INT32 | ( | x | ) | x |
typedef short dInt16 |
typedef int dInt32 |
typedef char dInt8 |
typedef unsigned short dUnsigned16 |
typedef unsigned int dUnsigned32 |
typedef unsigned dUnsigned32 |
typedef unsigned char dUnsigned8 |
void GetWorkingFileName | ( | const char * | name, | |
char * | outPathName | |||
) | [inline] |
void SWAP_FLOAT32_ARRAY | ( | float * | array, | |
dInt32 | count | |||
) | [inline] |