Hello,
Was using the HB Rooms by floor height component to sort my model by floor and realised that the input min_diff wasn’t doing anything. It looked no matter the input the component would use the Rhino tolerance instead of the user input. By editing the component by just changing the tolerance to the user input, if one was provided seemed to work nicely.
if min_diff_:
tolerance=min_diff_
#loop through each of the rooms and get the floor height
grouped_rooms, flr_hgts = Room.group_by_floor_height(in_rooms, tolerance)