Mercurial > hg > octave-nkf
view examples/code/@polynomial/end.m @ 20454:0bb456e9423b stable
Allow interactive annotations in other figures than the currentfigure.
* Canvas.cc (Canvas::canvasMouseReleaseEvent): prepend the figure handle argument when calling annotation function.
author | Pantxo Diribarne <pantxo.diribarne@gmail.com> |
---|---|
date | Tue, 02 Jun 2015 19:24:44 +0200 |
parents | 0e1f5a750d00 |
children |
line wrap: on
line source
function r = end (obj, index_pos, num_indices) if (num_indices != 1) error ("polynomial object may only have one index") endif r = length (obj.poly) - 1; endfunction