contrib/brl/bbas/bgui3d/bgui3d.cxx
Go to the documentation of this file.
00001 #include "bgui3d.h"
00002 //:
00003 // \file
00004 
00005 #include <Inventor/SoDB.h>
00006 #include <Inventor/SoInteraction.h>
00007 #include <Inventor/nodekits/SoNodeKit.h>
00008 
00009 
00010 //: Initialize Coin3d for bgui3d use
00011 void bgui3d_init()
00012 {
00013   // initialize the Coin3d database
00014   SoDB::init();
00015 
00016   // initialize the Coin3d nodekits
00017   SoNodeKit::init();
00018 
00019 // initialize Coin3d interaction
00020   SoInteraction::init();
00021 }