Last change
on this file since 1139 was 1114, checked in by iritscen, 5 years ago |
Adding OniSplit source code (v0.9.99.0). Many thanks to Neo for all his work over the years.
|
File size:
420 bytes
|
Line | |
---|
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 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.