doinitialize.m

来自「任意边界结构正交曲线网格生成程序」· M 代码 · 共 31 行

M
31
字号
function theResult = doinitialize(self, varargin)% seagrid/doinitialize -- Initialization of "seagrid".%  doinitialize(self, ...) initializes self, a "seagrid" object,%   with the name/value pairs given in the argument-list.%% (Presto-compatible) % Copyright (C) 1999 Dr. Charles R. Denham, ZYDECO.%  All Rights Reserved.%   Disclosure without explicit written consent from the%    copyright owner does not constitute publication. % Version of 07-Apr-1999 15:47:38.% Updated    03-Jun-1999 17:24:28.if nargin < 1, help(mfilename), return, endtheMenus = doaddmenus(self);for i = 2:2:length(varargin)	self = psset(self, varargin{i-1}, varargin{i});endtheProjection = psget(self, 'itsProjection');sg_proj(theProjection)getboundary(self)if nargout > 0, theResult = self; end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?