Welcome to mirror list, hosted at ThFree Co, Russian Federation.

solid_types.h « include « Sumo « Physics « gameengine « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 537bbcb5826197b42cb9156387d70a416d555423 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef SOLID_TYPES_H
#define SOLID_TYPES_H

#define DT_DECLARE_HANDLE(name) typedef struct name##__ { int unused; } *name
    
typedef double        DT_Scalar;        
typedef unsigned int  DT_Count;
typedef unsigned int  DT_Index;
typedef unsigned int  DT_Size;

typedef DT_Scalar DT_Vector3[3]; 
typedef DT_Scalar DT_Quaternion[4]; 

#endif