view scripts/plot/appearance/private/__tickangle__.m @ 29024:447beb85551d

Add ytickangle and ztickangle functions (bug #59067) * scripts/plot/appearance/ytickangle.m: New function. * scripts/plot/appearance/ztickangle.m: New function. * scripts/plot/appearance/module.mk: Add ytickangle.m, ztickangle.m to build system. * NEWS: Announce addition of xtickangle, ytickangle, ztickangle functions. * doc/interpreter/plot.txi: Add xtickangle to manual and XREF anchors for ytickangle and ztickangle. * __unimplemented__.m: Remove xtickangle, ytickangle, ztickangle from unimplemented list. * __tickangle__.m: Fix empty figure popping up during BIST tests.
author Rik <rik@octave.org>
date Wed, 04 Nov 2020 20:18:11 -0800
parents 5e62adcdcaa2
children 7854d5752dd2
line wrap: on
line source

########################################################################
##
## Copyright (C) 2020 The Octave Project Developers
##
## See the file COPYRIGHT.md in the top-level directory of this
## distribution or <https://octave.org/copyright/>.
##
## This file is part of Octave.
##
## Octave is free software: you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## Octave is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Octave; see the file COPYING.  If not, see
## <https://www.gnu.org/licenses/>.
##
########################################################################

## -*- texinfo -*-
## @deftypefn {} {@var{retval} =} __tickangle__ (@var{caller}, @var{hax}, @var{angle})
## Undocumented internal function.
## @seealso{xtickangle, ytickangle, ztickangle}
## @end deftypefn

function retval = __tickangle__ (caller, hax, angle)

  ax = tolower (caller(1));
  switch (nargin)
    case 1
      retval = get (gca (), [ax, "ticklabelrotation"]);
      return;

    case 2
      if (isaxes (hax))
        retval = get (hax, [ax, "ticklabelrotation"]);
        return;
      else
        angle = hax;
        hax = [];
      endif

    case 3
      if (! isaxes (hax))
        error ([caller, ": HAX must be a handle to an axes object"]);
      endif

  endswitch

  if (! (isscalar (angle) && isnumeric (angle) && isfinite (angle)))
    error ([caller ": ANGLE must be a finite, numeric, scalar value"]);
  elseif (nargout > 0)
    error ([caller ": function called with output query and input set value"]);
  endif

  if (isempty (hax))
    hax = gca ();
  endif

  set (hax, [ax, "ticklabelrotation"], angle);

endfunction