Currently, it is possible to draw two furniture models with just one click. The models are shown in the images below.
I also added the possibility to create furniture through a UI interface.
locker = locker_type_1()
locker.set_dimensions(80,50,150)
locker.set_thickness(3.6)
locker.set_plinth_height(5)
locker.set_number_of_doors(2)
locker.set_mapping(150,150,150)
locker.draw()
locker = open_shelf()
locker.set_dimensions(50,30,80)
locker.set_thickness(3.6)
locker.set_mapping(150,150,150)
locker.draw()





