netradiant-custom/contrib/bobtoolz/visfind.h
Garux 4382b5f6d9 * bobToolz::Vis Viewer repair (shows current vis cluster brush drawsurfaces in green and rest visible ones in other colours for Q3 and Wolf/QL .bsp):
don't crash on bsp w/o vis
		don't crash with origin in the void (includes inside of structural brush)(do reset)
		grab point to analyse from camera position with nothing selected; grab from any objects selection too
		fix rendering issues
		read surfaces written by q3map2 correctly + faster rendering code
		print number of loaded drawsurfaces to console for evaluation of optimization done
		fix a couple of of leaks and crashes after new/delete
2019-03-07 11:29:59 +03:00

9 lines
164 B
C++

#include <list>
#include "mathlib.h"
class DMetaSurf;
typedef std::list<DMetaSurf*> DMetaSurfaces;
DMetaSurfaces* BuildTrace( char* filename, vec3_t v_origin );