Home > functions > gui > bm_editor > bm_edit_app_view > bm_edit_app_view2d > bm_edit_app_view2d_new.m

bm_edit_app_view2d_new

PURPOSE ^

create bm_edit_app_view2d object

SYNOPSIS ^

function [obj] = bm_edit_app_view2d_new()

DESCRIPTION ^

 create bm_edit_app_view2d object
 [USAGE]
    [obj] = bm_edit_app_view2d_new();
 [IN]
    none
 [OUT]
    obj : bm_edit_app_view2d object
 note:
    bm_edit_app_view2d class inherits view class.


 Copyright (C) 2011, ATR All Rights Reserved.
 License : New BSD License(see VBMEG_LICENSE.txt)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function [obj] = bm_edit_app_view2d_new()
0002 % create bm_edit_app_view2d object
0003 % [USAGE]
0004 %    [obj] = bm_edit_app_view2d_new();
0005 % [IN]
0006 %    none
0007 % [OUT]
0008 %    obj : bm_edit_app_view2d object
0009 % note:
0010 %    bm_edit_app_view2d class inherits view class.
0011 %
0012 %
0013 % Copyright (C) 2011, ATR All Rights Reserved.
0014 % License : New BSD License(see VBMEG_LICENSE.txt)
0015 
0016 %
0017 % --- Inheritance
0018 %
0019 obj = bm_edit_app_view_new;
0020 
0021 % set class type
0022 obj.class_type = 'bm_edit_app_view2d';
0023 
0024 %
0025 % --- Member initialize
0026 %
0027 
0028 
0029 %
0030 % --- After check
0031 %
0032 if nargout ~= 1
0033     error('function caller should receive obj.');
0034 end

Generated on Tue 27-Aug-2013 11:46:04 by m2html © 2005