view BSPModel.cpp @ 2317:345b1ff000bb

add stuff.h
author Ritor1
date Thu, 20 Mar 2014 09:13:42 +0600
parents 2e02c384c62b
children bddcaf5d5db2
line wrap: on
line source

#define _CRT_SECURE_NO_WARNINGS
#include <stdlib.h>

#include "BSPModel.h"



//----- (00478389) --------------------------------------------------------
void BSPModel::Release()
{
  free(this->pVertices.pVertices);
  this->pVertices.pVertices = 0;
  free(this->pFaces);
  this->pFaces = 0;
  free(this->pFacesOrdering);
  this->pFacesOrdering = 0;
  free(this->pNodes);
  this->pNodes = 0;
  this->uNumNodes = 0;
  this->uNumFaces = 0;
  this->pVertices.uNumVertices = 0;
  this->uNumConvexFaces = 0;
}