initialize.m
来自「任意边界结构正交曲线网格生成程序」· M 代码 · 共 27 行
M
27 行
function theResult = initialize(self, varargin)% seagrid/initialize -- Initialization of "seagrid".% initialize(self, ...) initializes self, a "seagrid" object,% with the name/value pairs given in the argument-list. % 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, endfor i = 2:2:length(varargin) self = psset(self, varargin{i-1}, varargin{i})endtheProjection = psget(self, 'itsProjection');m_proj(theProjection)getboundary(self)if nargout > 0, theResult = self; end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?