1 <?xml version="1.0" encoding="ISO-8859-1"?>
3 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
4 * Copyright (C) INRIA - Serge Steer
5 * Copyright (C) INRIA - 2008 - Jean-Baptiste Silvy
7 * This file must be used under the terms of the CeCILL.
8 * This source file is licensed as described in the file COPYING, which
9 * you should have received as part of this distribution. The terms
10 * are also available at
11 * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
14 <refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:ns3="http://www.w3.org/1999/xhtml" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" xmlns:scilab="http://www.scilab.org" xml:id="unzoom" xml:lang="en">
16 <refname>unzoom</refname>
17 <refpurpose>Diminui a ampliação</refpurpose>
20 <title>Seqüência de Chamamento</title>
26 <title>Parâmetros</title>
31 <para>um vetor de manipuladores Figure ou Axes</para>
37 <title>Descrição</title>
39 <literal>unzoom()</literal> é usado para remover o efeito de
40 ampliação em todos os eixos da figura gráfica corrente:
43 <literal>unzoom(H)</literal> é usado para remover o efeito de
44 ampliação em todos os Figures e Axes dados pelo vetor de manipuladores
45 <literal>H</literal>. A remoção do efeito de ampliação para uma entidade
46 Figure é o mesmo que remover o efeito de ampliação para todos os seus Axes
51 <title>Exemplos</title>
52 <programlisting role="example"><![CDATA[
56 zoom_rect([16,-1,18,1])
59 //aplicação a subesboços
68 rect=[3 -2 7 10]; // um retângulo especificado nos eixos correntes (os últimos)
70 unzoom(a1) // diminuição de ampliação aplicado ao primeiro esboço apenas
71 unzoom(a2) // diminuição de ampliação aplicado ao segundo esboço apenas
72 zoom_rect(rect) // aplicando ampliação de novo
73 unzoom(gcf()) // diminuição de ampliação aplicada a todos os eixos, equivalente a unzoom()
76 <refsection role="see also">
77 <title>Ver Também</title>
78 <simplelist type="inline">
80 <link linkend="zoom_rect">zoom_rect</link>
83 <link linkend="axes_properties">axes_properties</link>