view Renderer/Engine/matrix.h @ 1024:cf0ad93028e9 draft

add task list mail time profile.
author yutaka@localhost.localdomain
date Mon, 08 Nov 2010 14:02:23 +0900
parents aa9728394194
children 294bc9364bee
line wrap: on
line source

#ifndef INCLUDED_MATRIX
#define INCLUDED_MATRIX

    struct MatrixList {
      float *matrix;
      MatrixList *next;
      
    };
    
    struct MatrixListInfo {
      int id;
      float *coord_pack;
      int coord_pack_size;
      int list_length;
      MatrixList *first;
      MatrixList *last;
      MatrixListInfo *next;
    };

#endif