C/C++
bsp.asc
Associated article: Implementing and Using BSP Trees
Tags: C/C++ Tools Parallel Design
_BSP TREE IMPLEMENTATION AND USE_ by Nathan Dwyer Listing One /* BSP.H -- Type definitions for BSP code */ #include <fstream.h> #define TRUE 1 #define FALSE 0 typedef unsigned char bool; typedef unsigned short ushort; typedef unsigned long ulong; class ...


