📄 plotcdt.m
字号:
function h = plotcdt(p,T,varargin)
%PLOTCDT Plot constrained Delaunay triangulation.
% PLOTCDT(P,T) plots the CDT of P computed by CDT. PLOTCDT(P,T,1) labels
% the edges and vertices.
%
% H = PLOTCDT(P,T) returns a vector of handles for the edges.
%
% See also CDT.
% Copyright 1998 by Toby Driscoll.
% $Id: plotcdt.m 7 1998-05-10 04:37:19Z tad $
han = plotptri(p.vertex,T.edge,varargin{:});
if nargout > 0
h = han;
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -