Mercurial > mm7
view BSPModel.cpp @ 2331:9551756f46c4
Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
author | Grumpy7 |
---|---|
date | Wed, 02 Apr 2014 01:21:05 +0200 |
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; }