From help-request at octave dot org Fri Feb 4 04:44:12 2005 Subject: Interactive rotation of mesh From: "Deepak, R." To: help at octave dot org 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 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. ------------------------------------------------------------- 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 -------------------------------------------------------------