00001
00002
00003
00004
00005
00006 #ifndef AQSENSE_SAL3D_MESH_H
00007 #define AQSENSE_SAL3D_MESH_H
00008
00009 #if defined (_MSC_VER) && (_MSC_VER >= 1020)
00010 #pragma once
00011 #endif
00012
00013 #include <sal3d/cop.h>
00014 #include "sal3d_def.h"
00015
00017 typedef struct sal3d_mesh
00018 {
00019 void *p;
00020 } sal3d_mesh;
00021
00022 typedef struct sal3d_mesh_triangle
00023 {
00024 int i[3];
00025 } sal3d_mesh_triangle;
00026
00027 typedef struct sal3d_mesh_vertex
00028 {
00029 float v[3];
00030 } sal3d_mesh_vertex;
00031
00032 #include "mesh_fun.h"
00033
00034 #endif //AQSENSE_SAL3D_MESH_H