public VoxBox( string name, VoxSpace voxSpace, int floorCellIdxX, int floorCellIdxZ, int heightCellStartIdx, int heightCellEndIdx) { this.name = name; this.voxSpace = voxSpace; this.floorCellIdxX = floorCellIdxX; this.floorCellIdxZ = floorCellIdxZ; this.heightCellStartIdx = heightCellStartIdx; this.heightCellEndIdx = heightCellEndIdx; CreateRealPosition(); }
public void SetVoxSpace(VoxSpace voxSpace) { this.voxSpace = voxSpace; }
public SpaceSpanGroup(VoxSpace voxSpace) { this.voxSpace = voxSpace; walkRadiusVoxCount = CalWalkRadiusVoxCount(); }