| Revision: | 1114 | 
| Committed: | Wed Jan 22 14:08:57 2020 UTC (5 years, 9 months ago) by iritscen | 
| File size: | 420 byte(s) | 
| Log Message: | Adding OniSplit source code (v0.9.99.0). Many thanks to Neo for all his work over the years. | 
| # | Content | 
|---|---|
| 1 | namespace Oni.Akira | 
| 2 | { | 
| 3 | internal abstract class BspNode<T> | 
| 4 | where T : BspNode<T> | 
| 5 | { | 
| 6 | public readonly Plane Plane; | 
| 7 | public readonly T BackChild; | 
| 8 | public readonly T FrontChild; | 
| 9 | |
| 10 | protected BspNode(Plane plane, T backChild, T frontChild) | 
| 11 | { | 
| 12 | Plane = plane; | 
| 13 | BackChild = backChild; | 
| 14 | FrontChild = frontChild; | 
| 15 | } | 
| 16 | } | 
| 17 | } |