Login  Register

Question about RS_EntityContainer

Posted by johnfound on Dec 29, 2024; 5:33pm
URL: https://forum.librecad.org/Question-about-RS-EntityContainer-tp5725899.html

void RS_EntityContainer::reparent(RS_EntityContainer *parent) {
    RS_Entity::reparent(parent);

    // All sub-entities:

    for (auto e: std::as_const(entities)) {
        e->reparent(parent);
    }
}

Why on reparent of entity container, all children are reparented as well? They are still children of its parent. Isn't it?

This effectively flatten the entity tree and breaks some things - for example the line WidthByBlock which after the reparent is determined by the new parent.