Update of /cvsroot/octaviz/octaviz/Scripts
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv29431
Modified Files:
vtk_close.m vtk_cone3.m
Log Message:
small edits to help documentation
Index: vtk_cone3.m
===================================================================
RCS file: /cvsroot/octaviz/octaviz/Scripts/vtk_cone3.m,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- vtk_cone3.m 25 Dec 2006 20:12:50 -0000 1.4
+++ vtk_cone3.m 9 Jan 2007 04:20:19 -0000 1.5
@@ -15,7 +15,7 @@
## 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
## -*- texinfo -*-
-## @deftypefn {Function File} {} vtk_arrows3(@var{x},@var{y},@var{z},@var{nx},@var{ny},@var{nz}, [@var{fmt} | @var{prop},@var{val}])
+## @deftypefn {Function File} {} vtk_cone3(@var{x},@var{y},@var{z},@var{nx},@var{ny},@var{nz}, [@var{fmt} | @var{prop},@var{val}])
## Displayes oriented cones at points defined by triplets (@var{x},@var{y},@var{z}).
## Cones are oriented along the vectors defined by triplets (@var{nx},@var{ny},@var{nz})
##
@@ -24,10 +24,13 @@
## @var{prop},@var{val} is a property,value pair argument. Valid
## properties are ";Color;Height;Radius;".
## @end deftypefn
-## @seealso{vtk_plot3,vtk_get_line_spec}
+## @seealso{vtk_plot3,vtk_arrows3,vtk_get_line_spec}
## Author: Dragan Tubic
+## The center of the cone is placed at the given point, whereas the base
+## of the arrow in vtk_arrows is placed at the given point. This should
+## probably be fixed. JJS 1/8/07
function vtk_cone3(varargin)
Index: vtk_close.m
===================================================================
RCS file: /cvsroot/octaviz/octaviz/Scripts/vtk_close.m,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- vtk_close.m 23 Oct 2004 18:47:58 -0000 1.2
+++ vtk_close.m 9 Jan 2007 04:20:19 -0000 1.3
@@ -17,8 +17,8 @@
## -*- texinfo -*-
## @deftypefn {Function File} {} vtk_close(@var{n})
## Closes the specified vtk figure window. All structures referencing
-## the figure window must be cleared from userspace in order for the
-## window to close.
+## the figure window (perhaps 'ans') must be cleared from userspace
+## in order for the window to close.
## @end deftypefn
## @seealso{vtk_clear}
@@ -27,4 +27,3 @@
function f = vtk_close( fig_no )
vtk_figure( -abs(fig_no) );
endfunction
-
\ No newline at end of file
|