コード例 #1
0
 public void LinkToParent_CalculateData(apLinkedMatrix parentMatrix)
 {
     _parentMatrix = parentMatrix;
     if (!parentMatrix._childMatrix.Contains(this))
     {
         parentMatrix._childMatrix.Add(this);
     }
 }
コード例 #2
0
        public void ReadyToCalculate()
        {
            _childMatrix.Clear();
            _parentMatrix = null;

            _weight   = 1.0f;
            _isWeight = false;

            _weightCalAdded   = 1.0f;
            _isWeightCalAdded = false;
        }
コード例 #3
0
 public void LinkToNext_Result(apLinkedMatrix nextResultMatrix)
 {
     _nextResultStep = nextResultMatrix;
     _nextResultStep._prevResultStep = this;
 }