view Renderer/Engine/matrix.h @ 911:c15473540c11

add file
author Yutaka_Kinjyo
date Tue, 20 Jul 2010 04:52:04 +0900
parents
children ad10d6d39ca6
line wrap: on
line source

#ifndef INCLUDED_MATRIX
#define INCLUDED_MATRIX

    struct MatrixList {

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

#endif