view test/bug-49379/class_bug49379.m @ 31238:67cad4e8f866

Include graphics objects with hidden handles in axes limit calculation (bug #63095). * libinterp/corefcn/graphics.cc (get_children_limits): Get handles to all axes children including those with hidden handle visibility. Add BIST. * libinterp/corefcn/graphics.in.h (text::update_position): Do not automatically change "zliminclude" property. Axes labels are implemented as text objects, and we don't want their extent to be included in the axis limit calculation.
author Markus Mützel <markus.muetzel@gmx.de>
date Sat, 24 Sep 2022 11:57:44 +0200
parents 976a7a350274
children
line wrap: on
line source

classdef class_bug49379 < handle
  properties
    m_ctor_arg_names = {};
    m_meth_arg_names = {};
  endproperties
  methods
    function obj = class_bug49379 (x, y)
      obj.m_ctor_arg_names = {inputname(1), inputname(2)};
    endfunction
    function meth (obj, x, y)
      obj.m_meth_arg_names = {inputname(1), inputname(2), inputname(3)};
    endfunction
    function names = ctor_arg_names (obj)
      names = obj.m_ctor_arg_names;
    endfunction
    function names = meth_arg_names (obj)
      names = obj.m_meth_arg_names;
    endfunction
  endmethods
endclassdef