Commit 8841d4a04af4e81b1f6e9c4910910bbe00bb809e
Exists in
master
and in
32 other branches
Merge branch 'amdadev' into MAZ_9016_New
Showing
2 changed files
with
12 additions
and
8 deletions
Show diff stats
generic_data/Functions/functions.xml
@@ -7,13 +7,6 @@ | @@ -7,13 +7,6 @@ | ||
7 | <info_brief>average</info_brief> | 7 | <info_brief>average</info_brief> |
8 | <new_kernel>#sampling_classic</new_kernel> | 8 | <new_kernel>#sampling_classic</new_kernel> |
9 | </function> | 9 | </function> |
10 | - <function name="isinside_(,)" args="1" kind="time" group="stat"> | ||
11 | - <prompts> | ||
12 | - <prompt>ahahah</prompt> | ||
13 | - </prompts> | ||
14 | - <info_brief>average</info_brief> | ||
15 | - <new_kernel>#ttcat_to_param</new_kernel> | ||
16 | - </function> | ||
17 | <function name="median_(,)" args="1" kind="time" group="stat"> | 10 | <function name="median_(,)" args="1" kind="time" group="stat"> |
18 | <prompts> | 11 | <prompts> |
19 | <prompt>input averaging time in secs</prompt> | 12 | <prompt>input averaging time in secs</prompt> |
@@ -290,7 +283,14 @@ | @@ -290,7 +283,14 @@ | ||
290 | <info_brief>Magnitude</info_brief> | 283 | <info_brief>Magnitude</info_brief> |
291 | <new_kernel>magnitude</new_kernel> | 284 | <new_kernel>magnitude</new_kernel> |
292 | </function> | 285 | </function> |
293 | - | 286 | + <function name="planarity(,,,)" args="4" kind="tetrahedron" group="math"> |
287 | + <info_brief>Planarity calculation from tetrahedron</info_brief> | ||
288 | + <new_kernel>planarity</new_kernel> | ||
289 | + </function> | ||
290 | + <function name="elongation(,,,)" args="4" kind="tetrahedron" group="math"> | ||
291 | + <info_brief>Elongation calculation from tetrahedron</info_brief> | ||
292 | + <new_kernel>elongation</new_kernel> | ||
293 | + </function> | ||
294 | <function name="abs()" kind="math" group="math"> | 294 | <function name="abs()" kind="math" group="math"> |
295 | <info_brief>Absolute value</info_brief> | 295 | <info_brief>Absolute value</info_brief> |
296 | <new_kernel>abs</new_kernel> | 296 | <new_kernel>abs</new_kernel> |
js/app/views/CalculatorUI.js
@@ -584,6 +584,7 @@ Ext.define('amdaUI.CalculatorUI', { | @@ -584,6 +584,7 @@ Ext.define('amdaUI.CalculatorUI', { | ||
584 | amdaUI.CalculatorUI.functionStore.filter('group', 'math'); | 584 | amdaUI.CalculatorUI.functionStore.filter('group', 'math'); |
585 | this.createFunctionBtns('MathFunctions', 'Simple Maths','#calc_tab_math_id'); | 585 | this.createFunctionBtns('MathFunctions', 'Simple Maths','#calc_tab_math_id'); |
586 | this.createFunctionBtns('VectorFunctions', 'Vector Functions', '#calc_tab_math_id'); | 586 | this.createFunctionBtns('VectorFunctions', 'Vector Functions', '#calc_tab_math_id'); |
587 | + this.createFunctionBtns('Tetrahedron', 'Tetrahedron', '#calc_tab_math_id'); | ||
587 | amdaUI.CalculatorUI.functionStore.clearFilter(); | 588 | amdaUI.CalculatorUI.functionStore.clearFilter(); |
588 | 589 | ||
589 | // group space | 590 | // group space |
@@ -690,6 +691,9 @@ Ext.define('amdaUI.CalculatorUI', { | @@ -690,6 +691,9 @@ Ext.define('amdaUI.CalculatorUI', { | ||
690 | case 'VectorFunctions' : | 691 | case 'VectorFunctions' : |
691 | amdaUI.CalculatorUI.functionStore.filter('kind', 'vector'); | 692 | amdaUI.CalculatorUI.functionStore.filter('kind', 'vector'); |
692 | break; | 693 | break; |
694 | + case 'Tetrahedron' : | ||
695 | + amdaUI.CalculatorUI.functionStore.filter('kind', 'tetrahedron'); | ||
696 | + break; | ||
693 | case 'ModelFunctions' : | 697 | case 'ModelFunctions' : |
694 | amdaUI.CalculatorUI.functionStore.filter('kind', 'model'); | 698 | amdaUI.CalculatorUI.functionStore.filter('kind', 'model'); |
695 | width = .45; | 699 | width = .45; |