Example #1
0
 private void initHandlers()
 {
     this.geometryHandler = new GeometryHandler();
     this.fileHandler = new FileHandler();
 }
Example #2
0
        private uint USER_ID = 1; // DO NOT TOUCH ! ! !

        #endregion Fields

        #region Constructors

        public MainWindow()
        {
            InitializeComponent();

            // Initialize tracking
            initJoints();
            this.tracking = false; // Turn off tracking
            this.calibrating = false; // Turn off any calibration

            // Initialize dialogs
            initDialogs();

            // Initialize handlers
            this.geometryHandler = new GeometryHandler();
            this.fileHandler = new FileHandler();

            // Initialize layout
            this.headline = Headline.Start;
            this.setting = Setting.None;
            updateLayout();
        }