Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
andydandy74 committed Oct 10, 2024
1 parent 363e417 commit 73c6133
Show file tree
Hide file tree
Showing 3 changed files with 182 additions and 216 deletions.
49 changes: 26 additions & 23 deletions nodes/3.x/TimeSpan.EvaluateLapTimes.dyf
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
}
],
"Replication": "Disabled",
"Description": "A function parameter, use with custom nodes.\r\n\r\nYou can specify the type and default value for parameter. E.g.,\r\n\r\ninput : var[]..[]\r\nvalue : bool = false"
"Description": "Ein Funktionsparameter zur Verwendung mit benutzerdefinierten Blöcken.\r\n\r\nSie können den Typ und den Vorgabewert für den Parameter angeben, z. B.\r\n\r\ninput : var[]..[]\r\nvalue : bool = false"
},
{
"ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Output, DynamoCore",
Expand All @@ -68,7 +68,7 @@
],
"Outputs": [],
"Replication": "Disabled",
"Description": "A function output, use with custom nodes"
"Description": "Eine Funktionsausgabe zur Verwendung mit benutzerdefinierten Blöcken"
},
{
"ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Output, DynamoCore",
Expand All @@ -89,12 +89,13 @@
],
"Outputs": [],
"Replication": "Disabled",
"Description": "A function output, use with custom nodes"
"Description": "Eine Funktionsausgabe zur Verwendung mit benutzerdefinierten Blöcken"
},
{
"ConcreteType": "PythonNodeModels.PythonNode, PythonNodeModels",
"NodeType": "PythonScriptNode",
"Code": "import clr\r\nOUT = [x - y for x, y in zip(IN[0][1:], IN[0][:-1])], IN[0][-1]-IN[0][0]",
"Code": "import clr\r\nfrom System import DateTime\r\nOUT = [x.Subtract(y) for x, y in zip(IN[0][1:], IN[0][:-1])], IN[0][-1].Subtract(IN[0][0])",
"Engine": "CPython3",
"VariableInputPorts": true,
"Id": "f2b46493da4d4fe280cd712c18fe1d46",
"Inputs": [
Expand All @@ -120,7 +121,7 @@
}
],
"Replication": "Disabled",
"Description": "Runs an embedded IronPython script."
"Description": "Führt ein eingebettetes Python-Skript aus."
},
{
"ConcreteType": "Dynamo.Graph.Nodes.CodeBlockNodeModel, DynamoCore",
Expand All @@ -142,7 +143,7 @@
{
"Id": "5b527fe7833440a68c4b4aa742d7b165",
"Name": "",
"Description": "Value of expression at line 1",
"Description": "Wert des Ausdrucks in Zeile 1",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
Expand All @@ -151,15 +152,15 @@
{
"Id": "ecda1b1767ea47be8aa5ab711652903c",
"Name": "",
"Description": "Value of expression at line 2",
"Description": "Wert des Ausdrucks in Zeile 2",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Replication": "Disabled",
"Description": "Allows for DesignScript code to be authored directly"
"Description": "Ermöglicht die direkte Erstellung von DesignScript-Code."
}
],
"Connectors": [
Expand All @@ -185,18 +186,20 @@
}
],
"Dependencies": [],
"NodeLibraryDependencies": [],
"Author": "None provided",
"Bindings": [],
"View": {
"Dynamo": {
"ScaleFactor": 1.0,
"HasRunWithoutCrash": false,
"IsVisibleInDynamoLibrary": true,
"Version": "2.0.1.5055",
"Version": "2.12.1.8246",
"RunType": "Manual",
"RunPeriod": "1000"
},
"Camera": {
"Name": "Background Preview",
"Name": "Hintergrundvorschau",
"EyeX": -17.0,
"EyeY": 24.0,
"EyeZ": 50.0,
Expand All @@ -209,59 +212,59 @@
},
"NodeViews": [
{
"ShowGeometry": true,
"Name": "Input",
"Id": "b8254c3d0ca94ff893c6b28fb6593d78",
"IsSetAsInput": false,
"IsSetAsOutput": false,
"Name": "Input",
"ShowGeometry": true,
"Excluded": false,
"X": 125.925589836661,
"Y": 202.654388327911
},
{
"ShowGeometry": true,
"Name": "Output",
"Id": "2d29f8f33e354fefae3802f08acf28c4",
"IsSetAsInput": false,
"IsSetAsOutput": false,
"Name": "Output",
"ShowGeometry": true,
"Excluded": false,
"X": 931.925589836661,
"Y": 169.441054994578
},
{
"ShowGeometry": true,
"Name": "Output",
"Id": "e43fe46ed62c468ba9f2f89a4fc684ea",
"IsSetAsInput": false,
"IsSetAsOutput": false,
"Name": "Output",
"ShowGeometry": true,
"Excluded": false,
"X": 931.925589836661,
"Y": 253.441054994578
},
{
"ShowGeometry": true,
"Name": "Python Script",
"Id": "f2b46493da4d4fe280cd712c18fe1d46",
"IsSetAsInput": false,
"IsSetAsOutput": false,
"Name": "Python Script",
"ShowGeometry": true,
"Excluded": false,
"X": 486.21536600121,
"Y": 203.364612163362
},
{
"ShowGeometry": true,
"Name": "Code Block",
"Id": "377948560dd043d9a8066167264c6c1c",
"IsSetAsInput": false,
"IsSetAsOutput": false,
"Name": "Code Block",
"ShowGeometry": true,
"Excluded": false,
"X": 710.925589836661,
"Y": 206.867721661244
}
],
"Annotations": [],
"X": -82.415247018739,
"Y": 52.997335764843,
"Zoom": 1.40800681431005
"X": 242.8338394310808,
"Y": 158.89901681189676,
"Zoom": 0.59671175445529534
}
}
57 changes: 30 additions & 27 deletions nodes/3.x/TimeSpan.LapTime.dyf
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"ConcreteType": "PythonNodeModels.PythonNode, PythonNodeModels",
"NodeType": "PythonScriptNode",
"Code": "import time\r\ntimes = IN[0]\r\ntimes.append(IN[2])\r\nOUT = times",
"Engine": "CPython3",
"VariableInputPorts": true,
"Id": "a4b357b725aa498fbb0391d70b36b117",
"Inputs": [
Expand Down Expand Up @@ -70,7 +71,7 @@
}
],
"Replication": "Disabled",
"Description": "Runs an embedded IronPython script."
"Description": "Führt ein eingebettetes Python-Skript aus."
},
{
"ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Symbol, DynamoCore",
Expand All @@ -96,7 +97,7 @@
}
],
"Replication": "Disabled",
"Description": "A function parameter, use with custom nodes.\r\n\r\nYou can specify the type and default value for parameter. E.g.,\r\n\r\ninput : var[]..[]\r\nvalue : bool = false"
"Description": "Ein Funktionsparameter zur Verwendung mit benutzerdefinierten Blöcken.\r\n\r\nSie können den Typ und den Vorgabewert für den Parameter angeben, z. B.\r\n\r\ninput : var[]..[]\r\nvalue : bool = false"
},
{
"ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Symbol, DynamoCore",
Expand All @@ -122,7 +123,7 @@
}
],
"Replication": "Disabled",
"Description": "A function parameter, use with custom nodes.\r\n\r\nYou can specify the type and default value for parameter. E.g.,\r\n\r\ninput : var[]..[]\r\nvalue : bool = false"
"Description": "Ein Funktionsparameter zur Verwendung mit benutzerdefinierten Blöcken.\r\n\r\nSie können den Typ und den Vorgabewert für den Parameter angeben, z. B.\r\n\r\ninput : var[]..[]\r\nvalue : bool = false"
},
{
"ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Output, DynamoCore",
Expand All @@ -143,7 +144,7 @@
],
"Outputs": [],
"Replication": "Disabled",
"Description": "A function output, use with custom nodes"
"Description": "Eine Funktionsausgabe zur Verwendung mit benutzerdefinierten Blöcken"
},
{
"ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Output, DynamoCore",
Expand All @@ -164,7 +165,7 @@
],
"Outputs": [],
"Replication": "Disabled",
"Description": "A function output, use with custom nodes"
"Description": "Eine Funktionsausgabe zur Verwendung mit benutzerdefinierten Blöcken"
},
{
"ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Symbol, DynamoCore",
Expand All @@ -190,7 +191,7 @@
}
],
"Replication": "Disabled",
"Description": "A function parameter, use with custom nodes.\r\n\r\nYou can specify the type and default value for parameter. E.g.,\r\n\r\ninput : var[]..[]\r\nvalue : bool = false"
"Description": "Ein Funktionsparameter zur Verwendung mit benutzerdefinierten Blöcken.\r\n\r\nSie können den Typ und den Vorgabewert für den Parameter angeben, z. B.\r\n\r\ninput : var[]..[]\r\nvalue : bool = false"
},
{
"ConcreteType": "Dynamo.Graph.Nodes.ZeroTouch.DSFunction, DynamoCore",
Expand All @@ -202,15 +203,15 @@
{
"Id": "974d95ac423c4b0eb2b287942d666293",
"Name": "dateTime",
"Description": "DateTime",
"Description": "DateTime-Darstellung der aktuellen Zeit",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Replication": "Auto",
"Description": "The current system date and time.\n\nDateTime.Now: var"
"Description": "Das aktuelle Datum und die Uhrzeit des Systems\n\nDateTime.Now: var"
}
],
"Connectors": [
Expand Down Expand Up @@ -241,18 +242,20 @@
}
],
"Dependencies": [],
"NodeLibraryDependencies": [],
"Author": "None provided",
"Bindings": [],
"View": {
"Dynamo": {
"ScaleFactor": 1.0,
"HasRunWithoutCrash": false,
"IsVisibleInDynamoLibrary": true,
"Version": "2.0.1.5055",
"Version": "2.12.1.8246",
"RunType": "Manual",
"RunPeriod": "1000"
},
"Camera": {
"Name": "Background Preview",
"Name": "Hintergrundvorschau",
"EyeX": -17.0,
"EyeY": 24.0,
"EyeZ": 50.0,
Expand All @@ -265,79 +268,79 @@
},
"NodeViews": [
{
"ShowGeometry": true,
"Name": "Python Script",
"Id": "a4b357b725aa498fbb0391d70b36b117",
"IsSetAsInput": false,
"IsSetAsOutput": false,
"Name": "Python Script",
"ShowGeometry": true,
"Excluded": false,
"X": 622.333930170099,
"Y": 52.0199904879137
},
{
"ShowGeometry": true,
"Name": "Input",
"Id": "e96088569f72494b80b5f0b9e3ff4ee9",
"IsSetAsInput": false,
"IsSetAsOutput": false,
"Name": "Input",
"ShowGeometry": true,
"Excluded": false,
"X": 146.333930170099,
"Y": -4.98000951208633
},
{
"ShowGeometry": true,
"Name": "Input",
"Id": "9405d6183c0b40509b6a4ccfabd27411",
"IsSetAsInput": false,
"IsSetAsOutput": false,
"Name": "Input",
"ShowGeometry": true,
"Excluded": false,
"X": 407.320053715309,
"Y": 249.085890032826
},
{
"ShowGeometry": true,
"Name": "Output",
"Id": "9bdd6e87366c40d781b7f1fa75d7c60f",
"IsSetAsInput": false,
"IsSetAsOutput": false,
"Name": "Output",
"ShowGeometry": true,
"Excluded": false,
"X": 846.333930170099,
"Y": 52.0199904879137
},
{
"ShowGeometry": true,
"Name": "Output",
"Id": "37dcfad76cb440cc8e0a991c442cfb12",
"IsSetAsInput": false,
"IsSetAsOutput": false,
"Name": "Output",
"ShowGeometry": true,
"Excluded": false,
"X": 628.320053715309,
"Y": 249.085890032826
},
{
"ShowGeometry": true,
"Name": "Input",
"Id": "2800019c538d456eba9985c8fb9ad240",
"IsSetAsInput": false,
"IsSetAsOutput": false,
"Name": "Input",
"ShowGeometry": true,
"Excluded": false,
"X": 146.333930170099,
"Y": 78.0199904879137
},
{
"ShowGeometry": true,
"Name": "DateTime.Now",
"Id": "3098cd68287e4d8cb7c1f396cc3da0a9",
"IsSetAsInput": false,
"IsSetAsOutput": false,
"Name": "DateTime.Now",
"ShowGeometry": true,
"Excluded": false,
"X": 146.333930170099,
"Y": 161.019990487914
}
],
"Annotations": [],
"X": 30.0,
"Y": 317.343292534722,
"Zoom": 1.16354166666667
"X": 125.59825993718863,
"Y": 280.23588450805732,
"Zoom": 0.76993981835434067
}
}
Loading

0 comments on commit 73c6133

Please sign in to comment.