Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen RevisionVorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
en:benutzerdefinierte_funktionen:benutzerdefinierte_funktionen [2024/10/27 20:13] neelesten:benutzerdefinierte_funktionen:benutzerdefinierte_funktionen [2024/10/27 20:15] (aktuell) – [Anweisungen] neelest
Zeile 13: Zeile 13:
       * **Bottom area:** Here you have access to a list of predefined variables and mathematical functions. With a simple click, you can insert these into the text field at the position of the cursor. As there are a total of 144 predefined variables containing calculation results or geometry data, this function makes it much easier to create complex functions.       * **Bottom area:** Here you have access to a list of predefined variables and mathematical functions. With a simple click, you can insert these into the text field at the position of the cursor. As there are a total of 144 predefined variables containing calculation results or geometry data, this function makes it much easier to create complex functions.
  
-      * **In the left-hand section of the dialogue, you can manage your user-defined functions. You can create or delete functions here.+      * **Left area**: In the left-hand section of the dialogue, you can manage your user-defined functions. You can create or delete functions here.
  
 {{ :benutzerdefinierte_funktionen:rex171_udf_en_001.png?nolink |}} {{ :benutzerdefinierte_funktionen:rex171_udf_en_001.png?nolink |}}
Zeile 70: Zeile 70:
       **Assignments:** An assignment binds the value of a mathematical expression to a variable:       **Assignments:** An assignment binds the value of a mathematical expression to a variable:
  
-<variable> = <mathematical expression>+    <variable> = <mathematical expression>
  
   *** Return:** The return statement ends the function and returns the result of the mathematical expression:   *** Return:** The return statement ends the function and returns the result of the mathematical expression:
  
-return <mathematical expression>+    return <mathematical expression>
  
       * **Conditional execution (if-then-else):** An if-then-else statement performs a conditional check. If the logical expression is true, the then statement is executed, otherwise the else statement is executed. The else part is optional.       * **Conditional execution (if-then-else):** An if-then-else statement performs a conditional check. If the logical expression is true, the then statement is executed, otherwise the else statement is executed. The else part is optional.