1 Star 1 Fork 0

吉祥水/featool-multiphysics

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
plotgeom.m 1.78 KB
一键复制 编辑 原始数据 按行查看 历史
function [ varargout ] = plotgeom( varargin )
%PLOTGEOM Visualization of geometry objects.
%
% [ H ] = PLOTGEOM( SIN, VARARGIN ) Function to plot and visualize
% geometry objects. SIN is a valid fea problem struct or cell array
% of geometry objects. Accepts the following property/value pairs.
%
% Property Value/{Default} 1D 2D 3D Description
% -----------------------------------------------------------------------------------
% facecolor [.8 .8 1] x x x Face style or fixed color
% edgecolor {k} x x x Edge line color
% linestyle {-} x x x Edge line style
% linewidth {1} x x x Edge line width
% highlight {} x x x Highlight selected geometry objects
% labels off|{on} x x x Show geometry labels
% fontsize {axes default} x x x Font size used in labels
% axequal off|{on} x x x Axis equal setting
% bbox {0.05} x x x Size of bounding box (0=off)
% ngrid {25} x x x Background grid resolution
% style {1} x Plot objects (=1) or boundaries (=2)
% alpha {0.5} x Transparency level
% renderer {empty string}|plotly x x x Render in MATLAB or Plotly
% parent {gca} x x x Plot axes handle
%
% See also PLOTGRID, PLOTBDR, PLOTSUBD, POSTPLOT
% Copyright 2013-2019 Precise Simulation, Ltd.
if( ~nargin && ~nargout ), help plotgeom, return, end
varargout = cell( 1, nargout );
[varargout{:}] = featool( 'feval', 'plotgeom', varargin{:} );
if( ~nargout ), clear varargout; end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jixiangshui/featool-multiphysics.git
git@gitee.com:jixiangshui/featool-multiphysics.git
jixiangshui
featool-multiphysics
featool-multiphysics
master

搜索帮助