Changeset 15520 for branches/2817-BinPackingSpeedup/HeuristicLab.Problems.BinPacking/3.3/3D/Geometry
- Timestamp:
- 12/13/17 09:47:49 (7 years ago)
- Location:
- branches/2817-BinPackingSpeedup/HeuristicLab.Problems.BinPacking/3.3/3D/Geometry
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2817-BinPackingSpeedup/HeuristicLab.Problems.BinPacking/3.3/3D/Geometry/Edge3D.cs
r15488 r15520 52 52 53 53 /// <summary> 54 /// Returns a point where t he two edges intersects.54 /// Returns a point where two edges are intersecting. 55 55 /// It returns null if they don't intersect. 56 56 /// </summary> -
branches/2817-BinPackingSpeedup/HeuristicLab.Problems.BinPacking/3.3/3D/Geometry/Vector3D.cs
r15488 r15520 79 79 } 80 80 81 public bool IsInside(PackingPosition pos, Tuple<int, int, int>rs) {82 return X >= pos.X && X < pos.X + rs. Item183 && Y >= pos.Y && Y < pos.Y + rs. Item284 && Z >= pos.Z && Z < pos.Z + rs. Item3;81 public bool IsInside(PackingPosition pos, ResidualSpace rs) { 82 return X >= pos.X && X < pos.X + rs.Width 83 && Y >= pos.Y && Y < pos.Y + rs.Height 84 && Z >= pos.Z && Z < pos.Z + rs.Depth; 85 85 } 86 86
Note: See TracChangeset
for help on using the changeset viewer.