source: OniSplit/Akira/AlphaBspNode.cs@ 1144

Last change on this file since 1144 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: 352 bytes
Line 
1namespace Oni.Akira
2{
3 internal class AlphaBspNode : BspNode<AlphaBspNode>
4 {
5 public readonly Polygon Polygon;
6
7 public AlphaBspNode(Polygon polygon, AlphaBspNode frontChild, AlphaBspNode backChild)
8 : base(polygon.Plane, frontChild, backChild)
9 {
10 Polygon = polygon;
11 }
12 }
13}
Note: See TracBrowser for help on using the repository browser.