コード例 #1
0
ファイル: Branch.cs プロジェクト: vakor03/Lab6_RayTracing
 public Branch(Branch mother, MBB mbb)
 {
     _mother = mother;
     _mbb    = mbb;
 }
コード例 #2
0
ファイル: Branch.cs プロジェクト: vakor03/Lab6_RayTracing
 public Branch(List <Node> childs, Branch mother, MBB mbb)
 {
     _childs = childs;
     _mother = mother;
     _mbb    = mbb;
 }