Home > functions > gui > bm_editor > bm_edit_app_view > bm_edit_app_view3d > bm_edit_app_view3d_new.m

bm_edit_app_view3d_new

PURPOSE ^

create view3d object

SYNOPSIS ^

function [obj] = bm_edit_app_view3d_new()

DESCRIPTION ^

 create view3d object
 [USAGE]
    [obj] = bm_edit_app_view3d_new;
 [IN]
    none
 [OUT]
    obj : bm_edit_app_view3d object
 note:
    bm_edit_app_view3d class inherits bm_edit_app_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_view3d_new()
0002 % create view3d object
0003 % [USAGE]
0004 %    [obj] = bm_edit_app_view3d_new;
0005 % [IN]
0006 %    none
0007 % [OUT]
0008 %    obj : bm_edit_app_view3d object
0009 % note:
0010 %    bm_edit_app_view3d class inherits bm_edit_app_view class.
0011 %
0012 %
0013 % Copyright (C) 2011, ATR All Rights Reserved.
0014 % License : New BSD License(see VBMEG_LICENSE.txt)
0015 
0016 
0017 %
0018 % --- Inheritance
0019 %
0020 obj = bm_edit_app_view_new;
0021 
0022 % set class type
0023 obj.class_type = 'bm_edit_app_view3d';
0024 
0025 %
0026 % --- Member initialize
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