When I use the record function this is what I get
import hm
import hm.entities as ent
def run():
model = hm.Model()
collectiona = hm.Collection(model, ent.Element, False)
collectionb = hm.Collection(model, hm.FilterByEnumeration(ent.Element, ids=[*range(1,201)]))
model.markintersection(collectiona=collectiona, collectionb=collectionb)
model.retainmarkselections(mode=0)
model.retainmarkselections(mode=0)
model.normalsoff()
model.vectorsoff()
Which doesn't work. Is there a command to do it using the API or it isn't implemented yet?