DRAWARROW3D plot a quiver of 3D arrows. drawArrow3d(pos, vec) Plots 3D arrows given the (pos)ition array [x1 y1 z1; x2 y2 z2; ...] and the (vec)tor array [dx1 dy1 dz1; dx2 dy2 dz2; ...]. drawArrow3d(pos, vec, color) Optional positional argument color conforms to 'ColorSpec.' For example, 'r','red',[1 0 0] will all plot a quiver with all arrows as red. This can also be in the form of Nx3 where 'N' is the number of arrows and each column corresponds to the RGB values. Default color is black. drawArrow3d(...,Name,Value) Optional name-value pair arguments: 'stemRatio': Ratio of the arrow head (cone) to the arrow stem (cylinder) For example, setting this value to 0.94 will produce arrows with arrow stems 94% of the length and short, 6% cones as arrow heads. Values above 0 and below 1 are valid. Default is 0.75. 'arrowRadius': changes the radius of the arrowstem. Percentage of the lenght of the arrow. Values between 0.01 and 0.01 are valid. Default is 0.025. Uses the 'patch' function to plot the arrows. 'patch' properties can be used to control the appearance of the arrows. drawArrow3d(AX,...) plots into AX instead of GCA. H = drawArrow3d(...) returns the handles of the arrows. Example: [X,Y] = meshgrid(1:5, -2:2); Z = zeros(size(X)); pos = [X(:),Y(:),Z(:)]; vec = zeros(size(pos)); vec(:,1) = 1; drawArrow3d(pos, vec, 'g', 'stemRatio', 0.6); view(3); lighting('phong'); camlight('head'); axis('equal')
Package: matgeom