「Dev:Ref/Proposals/UI/BUI BlenderUserInterface/Code」の版間の差分

提供: wiki
移動先: 案内検索
 
(1版 をインポートしました)
 
(相違点なし)

2018年6月29日 (金) 06:06時点における最新版

in progress Inprogress50.jpg 40%

 

BUI (Blender User Interface) :: Code

Layout

Top level design layout:

int main(int argc, const char **argv){

        //  BUI_init();

        //  BUI_run();

        //  BUI_plugin(Python);

        //  BUI_plugin(Blender);

}

// EOF

Requirements

Conventions

- all (with few exceptions) structs are encapsulated, only accessible through "methods".

- you declare a function in the "*.h" file, you "define" a function in the "*.c" file

Rules&Guides

- GitHub through SourceForge -> ToDo!

Feed-back