Update of /cvsroot/octaviz/octaviz/Scripts
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv21062
Modified Files:
vtkGetDataRoot.m vtk_quiver3.m
Log Message:
minor edits
Index: vtkGetDataRoot.m
===================================================================
RCS file: /cvsroot/octaviz/octaviz/Scripts/vtkGetDataRoot.m,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- vtkGetDataRoot.m 29 Dec 2006 03:24:59 -0000 1.3
+++ vtkGetDataRoot.m 3 Feb 2007 19:51:26 -0000 1.4
@@ -1,3 +1,28 @@
+## Copyright (C) 2004 Dragan Tubic
+##
+## This program 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 2, or (at your option)
+## any later version.
+##
+## This program 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 this file. If not, write to the Free Software Foundation,
+## 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+## -*- texinfo -*-
+## @deftypefn {Function File} {@var{f} =} vtkGetDataRoot ()
+## Internal function for many of the examples. Determines the path for
+## VTK example data.
+## @end deftypefn
+
+## Author: Jonathan Stickel
+
+
function f = vtkGetDataRoot()
## I guess this is a locally set variable; should put this in documents
Index: vtk_quiver3.m
===================================================================
RCS file: /cvsroot/octaviz/octaviz/Scripts/vtk_quiver3.m,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- vtk_quiver3.m 7 Mar 2005 02:05:00 -0000 1.2
+++ vtk_quiver3.m 3 Feb 2007 19:51:26 -0000 1.3
@@ -113,8 +113,8 @@
[nr nc] = size(pz);
len = nr*nc*3;
vect = zeros(len,1);
- size(u)
- len
+ ##size(u)
+ ##len
vect(1:3:len) = u;
vect(2:3:len) = v;
vect(3:3:len) = w;
|