Beispiel #1
0
        /// <summary>
        /// override base Init function
        /// </summary>
        new internal void Init()
        {
            base.Init();

            if (this.jointSmoother == null)
            {
                this.jointSmoother   = new DoubleExponentialFilter();
                this.smoothingParams = jointSmoother.SmoothingParameters;
                this.filteredJoint   = new DoubleExponentialFilter.Joint();
            }
        }
Beispiel #2
0
        internal void Init()
        {
            if (this.Joints.Count == 0)
            {
                BuildHeirarchy();
            }

            if (this.jointSmoother == null)
            {
                this.jointSmoother = new DoubleExponentialFilter();
            }
        }