verify_box_inside# static Box.verify_box_inside(box_inner: Box, box_outer: Box, boundary_conditions: Dict[str, str] | None = None) → bool# Verify that box_inner is fully contained within box_outer. Parameters: box_innerBoxThe inner box to check for containment. box_outerBoxThe outer bounding box. boundary_conditionsdict, optionalDictionary mapping each boundary (e.g. ‘x min’, ‘y max’) to its condition (e.g. ‘PML’, ‘Metal’). Returns: boolTrue if box_inner is fully contained within box_outer, False otherwise.