コード例 #1
0
ファイル: IntBounds3.cs プロジェクト: Sorgas/Tearfall_unity
 public IntBounds3 set(IntBounds3 source)
 {
     base.set(source);
     minZ = Math.Min(source.minZ, source.maxZ);
     maxZ = Math.Max(source.minZ, source.maxZ);
     return(this);
 }
コード例 #2
0
ファイル: IntBounds3.cs プロジェクト: Sorgas/Tearfall_unity
 public IntBounds3(IntBounds3 source) : this(source.minX, source.minY, source.minZ, source.maxX, source.maxY, source.maxZ)
 {
 }