def extend(self, elements): """Append multiple elements to the children of this element""" for elm in elements: summon_core.append_group(self.ptr, elm)
def append(self, element): """Append a drawing element to the children of this element""" summon_core.append_group(self.ptr, element) return element