📄 doinitialize.m
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -