Esempio n. 1
0
void RubberTool::execute() {
	sp_->bind_select(rb_);
	sp_->set_scene_tool(tool_);
	if (Oc::helpmode()) {
		rb_->help();
	}else if (sel_) {
		sel_->execute();
	}
}
Esempio n. 2
0
void HandlerTool::execute() {
	sp_->bind_select(h_);
	sp_->set_scene_tool(tool_);
	if (Oc::helpmode()) {
		if (h_) {
			h_->help();
		}else{
			sp_->help();
		}
	}
}