1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
|
## Copyright (C) 2024 David Legland
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
## modification, are permitted provided that the following conditions are met:
##
## 1 Redistributions of source code must retain the above copyright notice,
## this list of conditions and the following disclaimer.
## 2 Redistributions in binary form must reproduce the above copyright
## notice, this list of conditions and the following disclaimer in the
## documentation and/or other materials provided with the distribution.
##
## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ''AS IS''
## AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
## IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
## ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
## ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
## DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
## SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
## CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
## OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
##
## The views and conclusions contained in the software and documentation are
## those of the authors and should not be interpreted as representing official
## policies, either expressed or implied, of the copyright holders.
function varargout = drawCylinder(varargin)
%DRAWCYLINDER Draw a cylinder.
%
% drawCylinder(CYL)
% Draws the cylinder CYL on the current axis.
% CYL is a 1-by-7 row vector in the form [x1 y1 z1 x2 y2 z2 r] where:
% * [x1 y1 z1] are the coordinates of starting point,
% * [x2 y2 z2] are the coordinates of ending point,
% * R is the radius of the cylinder
%
% drawCylinder(CYL, N)
% Uses N points for discretizating the circles of the cylinder. Default
% value is 32.
%
% drawCylinder(..., OPT)
% with OPT = 'open' (default) or 'closed', specify if the bases of the
% cylinder should be drawn.
%
% drawCylinder(..., 'FaceColor', COLOR)
% Specifies the color of the cylinder. Any couple of parameters name and
% value can be given as argument, and will be transfered to the 'surf'
% matlab function
%
% drawCylinder(..., 'FaceAlpha', ALPHA)
% Specifies the transparency of the cylinder and of the optionnal caps.
%
% drawCylinder(AX, ...)
% Specifies the axis to draw on. AX should be a valid axis handle.
%
% H = drawCylinder(...)
% Returns a handle to the patch representing the cylinder.
%
%
% Examples:
% % basic example
% figure; drawCylinder([0 0 0 10 20 30 5]);
%
% % draw hollow cylinders
% figure; drawCylinder([0 0 0 10 20 30 5], 'open');
%
% % change cylinder color
% figure; drawCylinder([0 0 0 10 20 30 5], 'FaceColor', 'r');
%
% % change cylinder color using graphical handle
% figure;
% h = drawCylinder([0 0 0 10 20 30 5]);
% set(h, 'facecolor', 'b');
%
% % Draw three mutually intersecting cylinders
% p0 = [10 10 10];
% p1 = p0 + 80 * [1 0 0];
% p2 = p0 + 80 * [0 1 0];
% p3 = p0 + 80 * [0 0 1];
% figure; axis equal; axis([0 100 0 100 0 100]); hold on
% drawCylinder([p0 p1 10], 'FaceColor', 'r');
% drawCylinder([p0 p2 10], 'FaceColor', 'g');
% drawCylinder([p0 p3 10], 'FaceColor', 'b');
% axis equal
% set(gcf, 'renderer', 'opengl')
% view([60 30]); light;
%
% % draw cube skeleton
% [v, e, f] = createCube;
% figure; axis equal; axis([-0.2 1.2 -0.2 1.2 -0.2 1.2]); hold on; view(3);
% cyls = [v(e(:,1), :) v(e(:,2),:) repmat(0.1, size(e, 1), 1)];
% drawCylinder(cyls);
% light
%
% See also
% cylinderMesh, drawEllipseCylinder, drawSphere, drawLine3d, surf
% intersectLineCylinder, cylinderSurfaceArea
%
% ------
% Author: David Legland
% E-mail: david.legland@inrae.fr
% Created: 2005-09-17
% Copyright 2005-2023 INRA - TPV URPOI - BIA IMASTE
%% Input argument processing
% extract handle of axis to draw on
[hAx, varargin] = parseAxisHandle(varargin{:});
% input argument representing cylinders
cyl = varargin{1};
varargin(1) = [];
% process the case of multiple cylinders
if iscell(cyl)
hCyls = gobjects(length(cyl), 1);
for i = 1:length(cyl)
hCyls(i) = drawCylinder(hAx, cyl{i}, varargin{:});
end
if nargout > 0
varargout{1} = hCyls;
end
return;
elseif size(cyl, 1) > 1
hCyls = gobjects(size(cyl, 1), 1);
for i = 1:size(cyl, 1)
hCyls(i) = drawCylinder(hAx, cyl(i, :), varargin{:});
end
if nargout > 0
varargout{1} = hCyls;
end
return;
end
% default values
N = 32;
closed = true;
% check number of discretization steps
if ~isempty(varargin)
var = varargin{1};
if isnumeric(var)
N = var;
varargin = varargin(2:end);
end
end
% check if cylinder must be closed or open
if ~isempty(varargin)
var = varargin{1};
if ischar(var)
if strncmpi(var, 'open', 4)
closed = false;
varargin = varargin(2:end);
elseif strncmpi(var, 'closed', 5)
closed = true;
varargin = varargin(2:end);
end
end
end
faceColor = 'g';
ind = find(strcmpi(varargin, 'FaceColor'), 1, 'last');
if ~isempty(ind)
faceColor = varargin{ind+1};
varargin(ind:ind+1) = [];
end
% extract transparency
alpha = 1;
ind = find(strcmpi(varargin, 'FaceAlpha'), 1, 'last');
if ~isempty(ind)
alpha = varargin{ind+1};
varargin(ind:ind+1) = [];
end
% add default drawing options
varargin = [{'FaceColor', faceColor, 'edgeColor', 'none', 'FaceAlpha', alpha} varargin];
%% Computation of mesh coordinates
% extreme points of cylinder
p1 = cyl(1:3);
p2 = cyl(4:6);
% radius of cylinder
r = cyl(7);
% compute orientation angle of cylinder
[theta, phi, rho] = cart2sph2d(p2 - p1);
dphi = linspace(0, 2*pi, N+1);
% generate a cylinder oriented upwards
x = repmat(cos(dphi) * r, [2 1]);
y = repmat(sin(dphi) * r, [2 1]);
z = repmat([0 ; rho], [1 length(dphi)]);
% transform points
trans = localToGlobal3d(p1, theta, phi, 0);
pts = transformPoint3d([x(:) y(:) z(:)], trans);
% reshape transformed points
x2 = reshape(pts(:,1), size(x));
y2 = reshape(pts(:,2), size(x));
z2 = reshape(pts(:,3), size(x));
%% Display cylinder mesh
% plot the cylinder as a surface
hCyl(1) = surf(hAx, x2, y2, z2, varargin{:});
% eventually plot the ends of the cylinder
if closed
hCyl(2)=patch(hAx, x2(1,:)', y2(1,:)', z2(1,:)', faceColor, 'edgeColor', 'none', 'FaceAlpha', alpha);
hCyl(3)=patch(hAx, x2(2,:)', y2(2,:)', z2(2,:)', faceColor, 'edgeColor', 'none', 'FaceAlpha', alpha);
gh = hggroup(hAx);
set(hCyl,'Parent',gh)
hCyl = gh;
end
% format ouptut
if nargout == 1
varargout{1} = hCyl;
end
|