EmotionalAppraisal.ActiveEmotion.ReforceEmotion C# (CSharp) 메소드

ReforceEmotion() 공개 메소드

Reforces the intensity of the emotion by a given potential
public ReforceEmotion ( float potential ) : void
potential float the potential for the reinformcement of the emotion's intensity
리턴 void
        public void ReforceEmotion(float potential)
        {
            this.Intensity = (float)Math.Log(Math.Exp(this.Potential) + Math.Exp(potential));
        }