[chronojump] Jumps DjPower counts mass now as personweight + extraweight
- From: Xavier de Blas <xaviblas src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [chronojump] Jumps DjPower counts mass now as personweight + extraweight
- Date: Tue, 2 Dec 2014 16:42:28 +0000 (UTC)
commit 5cca69ba64ea440d783c33064b2e36503e80c775
Author: Xavier de Blas <xaviblas gmail com>
Date: Tue Dec 2 17:40:23 2014 +0100
Jumps DjPower counts mass now as personweight + extraweight
src/treeViewJump.cs | 14 ++++++++------
1 files changed, 8 insertions(+), 6 deletions(-)
---
diff --git a/src/treeViewJump.cs b/src/treeViewJump.cs
index fa6fea3..f25a947 100644
--- a/src/treeViewJump.cs
+++ b/src/treeViewJump.cs
@@ -197,14 +197,16 @@ public class TreeViewJumps : TreeViewEvent
//takeoff has no tv. power should not be calculated
//calculate jumps with tf
if(newJump.Tv > 0) {
+ //we calculate weightInKg again because can be changed in edit jump, and then
treeview is no re-done
+ //but we do not calculate again person weight, because if it changes treeview
is created again
+ weightInKg = Util.WeightFromPercentToKg(
+ Convert.ToDouble(newJump.Weight.ToString()),
+ personWeight);
+
if(newJump.Tc > 0) //if it's Dj (has tf, and tc)
- myData[count++] = Util.TrimDecimals(Util.GetDjPower(newJump.Tc,
newJump.Tv, personWeight, newJump.Fall).ToString(), pDN);
+ myData[count++] = Util.TrimDecimals(
+ Util.GetDjPower(newJump.Tc, newJump.Tv, (personWeight
+ weightInKg), newJump.Fall).ToString(), pDN);
else { //it's a normal jump without tc
- //we calculate weightInKg again because can be changed in edit jump,
and then treeview is no re-done
- //but we do not calculate again person weight, because if it changes
treeview is created again
- weightInKg = Util.WeightFromPercentToKg(
- Convert.ToDouble(newJump.Weight.ToString()),
- personWeight);
myData[count++] = Util.TrimDecimals(
Util.GetPower(newJump.Tv, personWeight,
weightInKg).ToString(), pDN);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]