def handle_actions(self): self.actions = {} shape_actions = {} shape_actions['pt'] = BendAction(self) shape_actions['y'] = AttrAction(self, 'sd') self.actions['shape'] = shape_actions s1_prof_actions = {} s1_prof_actions['pt'] = SagAction(self.s1) self.actions['s1_profile'] = s1_prof_actions s2_prof_actions = {} s2_prof_actions['pt'] = SagAction(self.s2) self.actions['s2_profile'] = s2_prof_actions sd_upr_action = {} sd_upr_action['y'] = AttrAction(self, 'sd') self.actions['sd_upr'] = sd_upr_action sd_lwr_action = {} sd_lwr_action['y'] = AttrAction(self, 'sd') self.actions['sd_lwr'] = sd_lwr_action ct_action = {} ct_action['x'] = AttrAction(self.gap, 'thi') self.actions['ct'] = ct_action return self.actions
def handle_actions(self): self.actions = {} shape_actions = {} shape_actions['pt'] = SagAction(self.s) self.actions['shape'] = shape_actions s_prof_actions = {} s_prof_actions['pt'] = SagAction(self.s) self.actions['s_profile'] = s_prof_actions sd_upr_action = {} sd_upr_action['y'] = AttrAction(self, 'edge_extent[1]') self.actions['sd_upr'] = sd_upr_action sd_lwr_action = {} sd_lwr_action['y'] = AttrAction(self, 'edge_extent[0]') self.actions['sd_lwr'] = sd_lwr_action return self.actions