octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #32609] out of alignment problem


From: Daisuke TAKAGO
Subject: [Octave-bug-tracker] [bug #32609] out of alignment problem
Date: Sun, 27 Feb 2011 02:18:54 +0000
User-agent: Mozilla/5.0 (X11; U; Linux i686; ja; rv:1.9.1.16) Gecko/20110107 Iceweasel/3.5.16 (like Firefox/3.5.16) GTB7.1

URL:
  <http://savannah.gnu.org/bugs/?32609>

                 Summary: out of alignment problem
                 Project: GNU Octave
            Submitted by: takago
            Submitted on: 2011年02月27日 02時18分53秒
                Category: Plotting with OpenGL
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: Incorrect Result
                  Status: None
             Assigned to: None
         Originator Name: Daisuke TAKAGO
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
                 Release: dev
        Operating System: GNU/Linux

    _______________________________________________________

Details:

I found that ginput() occurs out of alignment. This problem may be caused by
"Menubar".

% TEST-A  ( NOT Works Well )
close
figure(1);
plot(16*rand(1,2),rand(1,2),'o');
axis([1 16 0 1]);
grid on;
hold on;
disp('Connect two points with mouse !!');
[m,n]=ginput(2);
plot(m,n);
hold off;
axis([1 16 0 1])


% TEST-B ( Works Well )
close
figure(1);
set(gcf,'MenuBar','none');       %% Newly Insert Statement
plot(16*rand(1,2),rand(1,2),'o');
axis([1 16 0 1]);
grid on;
hold on;
disp('Connect two points with mouse !!');
[m,n]=ginput(2);
plot(m,n);
hold off;
axis([1 16 0 1])





    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?32609>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]