thug/Code/Sys/ngc/p_frame.cpp

57 lines
2.3 KiB
C++
Raw Normal View History

2016-02-13 21:39:12 +00:00
/********************************************************************************
* *
* Module: *
* NsFrame *
* Description: *
* Functionality to set up frames and minipulate them. *
* Written by: *
* Paul Robinson *
* Copyright: *
* 2001 Neversoft Entertainment - All rights reserved. *
* *
********************************************************************************/
/********************************************************************************
* Includes. *
********************************************************************************/
#include <math.h>
#include "p_frame.h"
/********************************************************************************
* Defines. *
********************************************************************************/
/********************************************************************************
* Structures. *
********************************************************************************/
/********************************************************************************
* Local variables. *
********************************************************************************/
/********************************************************************************
* Forward references. *
********************************************************************************/
/********************************************************************************
* Externs. *
********************************************************************************/
/********************************************************************************
* *
* Method: *
* NsFrame *
* Inputs: *
* <none> *
* Output: *
* <none> *
* Description: *
* Generates a frame object. *
* *
********************************************************************************/
NsFrame::NsFrame()
{
// Default matrix.
m_model.identity();
}