/usr/lib/scilab-plotlib/macros/rotate_axes.sci is in scilab-plotlib 0.42-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 | function rotate_axes(h)
global _catched _ref_info
if or(h.user_data.eventHandlers=='plotlib_rotate_handler')
return
end
_add_event_handler(get(h,'figure_id'),'plotlib_rotate_handler');
_catched=[];
_ref_info= h.info_message;
h.info_message='Plotlib message: left-click on an axes to start rotation.';
endfunction
|