IRShell.h

/******************************************************************************\
                                                                        
        Module:     IRShell.h                                           
                                                                            
        Purpose:    Interactive rendering plug-in shell for QD3D                            
                                                                        
        Author:     Sun-Inn Shih                                    
                                                                        
        Copyright (C) 1993-96 Apple Computer, Inc.  All rights reserved.    
                                                                            
\*****************************************************************************/
#ifndef _IRSHELL_H_
#define _IRSHELL_H_
#include <stdio.h>
 
struct irsData
    {
    TQ3Matrix4x4 localToFrustum ;
    float XScale ;
    float YScale ;
    float XOffset ;
    float YOffset ;
    } ;
 
extern irsData* gdata;
 
#endif