Mercurial > hg > octave-nkf
view examples/code/@polynomial/get.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 | c8240a60dd01 |
children |
line wrap: on
line source
function s = get (p, f) if (nargin == 1) s.poly = p.poly; elseif (nargin == 2) if (ischar (f)) switch (f) case "poly" s = p.poly; otherwise error ("get: invalid property %s", f); endswitch else error ("get: expecting the property to be a string"); endif else print_usage (); endif endfunction