help-octave
[Top][All Lists]
Advanced

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

Interactive rotation of mesh


From: Deepak, R.
Subject: Interactive rotation of mesh
Date: Fri, 4 Feb 2005 16:01:08 +0530

I wrote this program to plot a mesh:
    % MODEL - Script to generate the long signature
    % By R. Deepak <http://research.iiit.ac.in/~masatran/>

    sequence = input('Sequence: ');
    n = input('n: ');
    long_signature  = signature_long(sequence, n)
    short_signature = signature_short(sequence, n)
    automatic_replot = 1;
    axis([1 columns(short_signature) 1 rows(short_signature) 0 
columns(long_signature)])
    mesh(
        1 : columns(short_signature),
        1 : rows(short_signature),
        short_signature
    )

Now, I want to allow the mesh to be rotated interactively in three
dimensions. What command should I use?
-- 
Deepak, R. <http://research.iiit.ac.in/~masatran/>



-------------------------------------------------------------
Octave is freely available under the terms of the GNU GPL.

Octave's home on the web:  http://www.octave.org
How to fund new projects:  http://www.octave.org/funding.html
Subscription information:  http://www.octave.org/archive.html
-------------------------------------------------------------



reply via email to

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