Skip to content

Commit 2b48e97

Browse files
authored
In Depth Node Documentation for Analytical nodes (7 nodes) (#3250)
- AnalyticalAutomation.Geometry.Surface.IsValidForAnalyticalPanel - AnalyticalAutomation.RevitElements.Element.ByAnalyticalMember - AnalyticalAutomation.RevitElements.Element.ByAnalyticalPanel - Revit.Elements.StructuralFraming.BeamByCurve - Revit.Elements.StructuralFraming.BraceByCurve - Revit.Elements.StructuralFraming.ColumnByCurve - Revit.Elements.StructuralFraming.Location Please Note: 1. Before submitting the PR, please review [How to Contribute to Dynamo](https://github.com/DynamoDS/Dynamo/blob/master/CONTRIBUTING.md) 2. Dynamo Team will meet 1x a month to review PRs found on Github (Issues will be handled separately) 3. PRs will be reviewed from oldest to newest 4. If a reviewed PR requires changes by the owner, the owner of the PR has 30 days to respond. If the PR has seen no activity by the next session, it will be either closed by the team or depending on its utility will be taken over by someone on the team 5. PRs should use either Dynamo's default PR template or [one of these other template options](https://github.com/DynamoDS/Dynamo/wiki/Choosing-a-Pull-Request-Template) in order to be considered for review. 6. PRs that do not have one of the Dynamo PR templates completely filled out with all declarations satisfied will not be reviewed by the Dynamo team. 7. PRs made to the `DynamoRevit` repo will need to be cherry-picked into all the DynamoRevit Release branches that Dynamo supports. Contributors will be responsible for cherry-picking their reviewed commits to the other branches after a `LGTM` label is added to the PR. ### Purpose (FILL ME IN) This section describes why this PR is here. Usually it would include a reference to the tracking task that it is part or all of the solution for. ### Declarations Check these if you believe they are true - [ ] The code base is in a better state after this PR - [ ] Is documented according to the [standards](https://github.com/DynamoDS/Dynamo/wiki/Coding-Standards) - [ ] The level of testing this PR includes is appropriate - [ ] User facing strings, if any, are extracted into `*.resx` files - [ ] Snapshot of UI changes, if any. ### Reviewers (FILL ME IN) Reviewer 1 (If possible, assign the Reviewer for the PR) (FILL ME IN, optional) Any additional notes to reviewers or testers. ### FYIs (FILL ME IN, Optional) Names of anyone else you wish to be notified of
1 parent 63e6599 commit 2b48e97

21 files changed

+3806
-0
lines changed
Lines changed: 340 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,340 @@
1+
{
2+
"Uuid": "38522659-0bfc-4028-be96-2e4cc10f1597",
3+
"IsCustomNode": false,
4+
"Description": "",
5+
"Name": "AnalyticalAutomation.Geometry.Surface.IsValidForAnalyticalPanel",
6+
"ElementResolver": {
7+
"ResolutionMap": {}
8+
},
9+
"Inputs": [],
10+
"Outputs": [],
11+
"Nodes": [
12+
{
13+
"ConcreteType": "CoreNodeModels.Input.DoubleInput, CoreNodeModels",
14+
"NumberType": "Double",
15+
"Id": "51e56905d9534054be4ba0a680307633",
16+
"NodeType": "NumberInputNode",
17+
"Inputs": [],
18+
"Outputs": [
19+
{
20+
"Id": "31187f7031e847df8e62d5f2a2330c35",
21+
"Name": "",
22+
"Description": "Double",
23+
"UsingDefaultValue": false,
24+
"Level": 2,
25+
"UseLevels": false,
26+
"KeepListStructure": false
27+
}
28+
],
29+
"Replication": "Disabled",
30+
"Description": "Creates a number",
31+
"InputValue": 1.0
32+
},
33+
{
34+
"ConcreteType": "Dynamo.Graph.Nodes.ZeroTouch.DSFunction, DynamoCore",
35+
"Id": "326ac156986a4249b25cdc4b70c7b494",
36+
"NodeType": "FunctionNode",
37+
"Inputs": [
38+
{
39+
"Id": "9ffc39f009434902be0a943a3550f52c",
40+
"Name": "surface",
41+
"Description": "Input Surface\n\nSurface",
42+
"UsingDefaultValue": false,
43+
"Level": 2,
44+
"UseLevels": false,
45+
"KeepListStructure": false
46+
},
47+
{
48+
"Id": "5046b9de4c94497db1a49389dae68567",
49+
"Name": "checkOpenings",
50+
"Description": "Specifies if the surface openings (if exist) also should be checked for their validity to form AnalyticalOpenings.\n\nbool\nDefault value : true",
51+
"UsingDefaultValue": true,
52+
"Level": 2,
53+
"UseLevels": false,
54+
"KeepListStructure": false
55+
}
56+
],
57+
"Outputs": [
58+
{
59+
"Id": "a73ad185164148c182d5d1ca60493194",
60+
"Name": "bool",
61+
"Description": "Returns true if a surface can be a base for AnalyticalPanel, otherwise returns false",
62+
"UsingDefaultValue": false,
63+
"Level": 2,
64+
"UseLevels": false,
65+
"KeepListStructure": false
66+
},
67+
{
68+
"Id": "c01124859d884bcda0f0d1ba209f4616",
69+
"Name": "exceptionMessage",
70+
"Description": "The error message",
71+
"UsingDefaultValue": false,
72+
"Level": 2,
73+
"UseLevels": false,
74+
"KeepListStructure": false
75+
}
76+
],
77+
"FunctionSignature": "AnalyticalAutomation.Geometry.Surface.IsValidForAnalyticalPanel@Autodesk.DesignScript.Geometry.Surface,bool",
78+
"Replication": "Auto",
79+
"Description": "Checks if a surface can be a base for AnalyticalPanel. If so, it can be an input of the AnalyticalPanel.BySurface method. If the method result is false, it provides the exception message informing about the cause.\n\nSurface.IsValidForAnalyticalPanel (surface: Surface, checkOpenings: bool = true): var[]..[]"
80+
},
81+
{
82+
"ConcreteType": "Dynamo.Graph.Nodes.ZeroTouch.DSFunction, DynamoCore",
83+
"Id": "33cc7c39b92e42229d7b1f548ee3df17",
84+
"NodeType": "FunctionNode",
85+
"Inputs": [
86+
{
87+
"Id": "68af46899cb44497ac084ad22925d65e",
88+
"Name": "element",
89+
"Description": "Revit.Elements.Element",
90+
"UsingDefaultValue": false,
91+
"Level": 2,
92+
"UseLevels": false,
93+
"KeepListStructure": false
94+
}
95+
],
96+
"Outputs": [
97+
{
98+
"Id": "2289290cd5d043808f3e2dddfd95ef6c",
99+
"Name": "Surface[]",
100+
"Description": "Surface[]",
101+
"UsingDefaultValue": false,
102+
"Level": 2,
103+
"UseLevels": false,
104+
"KeepListStructure": false
105+
}
106+
],
107+
"FunctionSignature": "Revit.Elements.Element.Faces",
108+
"Replication": "Auto",
109+
"Description": "The Faces in this Element\n\nElement.Faces: Surface[]"
110+
},
111+
{
112+
"ConcreteType": "Dynamo.Graph.Nodes.ZeroTouch.DSFunction, DynamoCore",
113+
"Id": "0521e9d6e7cd4888b3bfd6de24e8d155",
114+
"NodeType": "FunctionNode",
115+
"Inputs": [
116+
{
117+
"Id": "9e06de6f5e164631995b84c6fdcd28db",
118+
"Name": "list",
119+
"Description": "List to get the first item from.\n\nvar[]..[]",
120+
"UsingDefaultValue": false,
121+
"Level": 2,
122+
"UseLevels": false,
123+
"KeepListStructure": false
124+
}
125+
],
126+
"Outputs": [
127+
{
128+
"Id": "4802708e1f6d477eae054c00be9ec751",
129+
"Name": "item",
130+
"Description": "First item in the list.",
131+
"UsingDefaultValue": false,
132+
"Level": 2,
133+
"UseLevels": false,
134+
"KeepListStructure": false
135+
}
136+
],
137+
"FunctionSignature": "DSCore.List.FirstItem@var[]..[]",
138+
"Replication": "Auto",
139+
"Description": "Returns the first item in a list.\n\nList.FirstItem (list: var[]..[]): var[]..[]"
140+
},
141+
{
142+
"ConcreteType": "CoreNodeModels.Input.DoubleInput, CoreNodeModels",
143+
"NumberType": "Double",
144+
"Id": "5e15f6be82c34576be5531f554e93d4a",
145+
"NodeType": "NumberInputNode",
146+
"Inputs": [],
147+
"Outputs": [
148+
{
149+
"Id": "c339596dab8b4f308f5d8bacfa287de6",
150+
"Name": "",
151+
"Description": "Double",
152+
"UsingDefaultValue": false,
153+
"Level": 2,
154+
"UseLevels": false,
155+
"KeepListStructure": false
156+
}
157+
],
158+
"Replication": "Disabled",
159+
"Description": "Creates a number",
160+
"InputValue": 687839.0
161+
},
162+
{
163+
"ConcreteType": "DSRevitNodesUI.ElementById, DSRevitNodesUI",
164+
"Id": "289b0ca1e11d4813bb3f3dba30d48bd6",
165+
"NodeType": "ExtensionNode",
166+
"Inputs": [
167+
{
168+
"Id": "3e26688b9a1c4527aa87f4120ef0a03a",
169+
"Name": "Id",
170+
"Description": "Element Id as string, int or ElementId",
171+
"UsingDefaultValue": false,
172+
"Level": 2,
173+
"UseLevels": false,
174+
"KeepListStructure": false
175+
}
176+
],
177+
"Outputs": [
178+
{
179+
"Id": "3dbe14488ae04c0288af8aef5fbd1ce0",
180+
"Name": "Element",
181+
"Description": "The list of elements matching the query.",
182+
"UsingDefaultValue": false,
183+
"Level": 2,
184+
"UseLevels": false,
185+
"KeepListStructure": false
186+
}
187+
],
188+
"Replication": "Disabled",
189+
"Description": "Gets the Element with the specified Id"
190+
}
191+
],
192+
"Connectors": [
193+
{
194+
"Start": "31187f7031e847df8e62d5f2a2330c35",
195+
"End": "5046b9de4c94497db1a49389dae68567",
196+
"Id": "41f1d8b3419542379aedb46cf53d6a9d",
197+
"IsHidden": "False"
198+
},
199+
{
200+
"Start": "2289290cd5d043808f3e2dddfd95ef6c",
201+
"End": "9e06de6f5e164631995b84c6fdcd28db",
202+
"Id": "ea5a39adf1b042a9842ad8ae57379a69",
203+
"IsHidden": "False"
204+
},
205+
{
206+
"Start": "4802708e1f6d477eae054c00be9ec751",
207+
"End": "9ffc39f009434902be0a943a3550f52c",
208+
"Id": "87614e6a88be462aaac8dfb629ed83d5",
209+
"IsHidden": "False"
210+
},
211+
{
212+
"Start": "c339596dab8b4f308f5d8bacfa287de6",
213+
"End": "3e26688b9a1c4527aa87f4120ef0a03a",
214+
"Id": "4a8bdaed29c542729ffc22477315f4a0",
215+
"IsHidden": "False"
216+
},
217+
{
218+
"Start": "3dbe14488ae04c0288af8aef5fbd1ce0",
219+
"End": "68af46899cb44497ac084ad22925d65e",
220+
"Id": "4122565eb46049e382941798f836e969",
221+
"IsHidden": "False"
222+
}
223+
],
224+
"Dependencies": [],
225+
"NodeLibraryDependencies": [],
226+
"EnableLegacyPolyCurveBehavior": true,
227+
"Thumbnail": "",
228+
"GraphDocumentationURL": null,
229+
"ExtensionWorkspaceData": [
230+
{
231+
"ExtensionGuid": "28992e1d-abb9-417f-8b1b-05e053bee670",
232+
"Name": "Properties",
233+
"Version": "2.13",
234+
"Data": {}
235+
},
236+
{
237+
"ExtensionGuid": "DFBD9CC0-DB40-457A-939E-8C8555555A9D",
238+
"Name": "Generative Design",
239+
"Version": "2.0",
240+
"Data": {}
241+
}
242+
],
243+
"Author": "",
244+
"Linting": {
245+
"activeLinter": "None",
246+
"activeLinterId": "7b75fb44-43fd-4631-a878-29f4d5d8399a",
247+
"warningCount": 0,
248+
"errorCount": 0
249+
},
250+
"Bindings": [],
251+
"View": {
252+
"Dynamo": {
253+
"ScaleFactor": 1.0,
254+
"HasRunWithoutCrash": true,
255+
"IsVisibleInDynamoLibrary": true,
256+
"Version": "3.4.1.7055",
257+
"RunType": "Automatic",
258+
"RunPeriod": "1000"
259+
},
260+
"Camera": {
261+
"Name": "_Background Preview",
262+
"EyeX": -37.28171157836914,
263+
"EyeY": 45.97184753417969,
264+
"EyeZ": 148.02828979492188,
265+
"LookX": 32.28171157836914,
266+
"LookY": -34.97184753417969,
267+
"LookZ": -156.02828979492188,
268+
"UpX": 0.0,
269+
"UpY": 1.0,
270+
"UpZ": 0.0
271+
},
272+
"ConnectorPins": [],
273+
"NodeViews": [
274+
{
275+
"Id": "51e56905d9534054be4ba0a680307633",
276+
"Name": "Number",
277+
"IsSetAsInput": false,
278+
"IsSetAsOutput": false,
279+
"Excluded": false,
280+
"ShowGeometry": true,
281+
"X": 258.7431293888337,
282+
"Y": -467.6627673628752
283+
},
284+
{
285+
"Id": "326ac156986a4249b25cdc4b70c7b494",
286+
"Name": "Surface.IsValidForAnalyticalPanel",
287+
"IsSetAsInput": false,
288+
"IsSetAsOutput": false,
289+
"Excluded": false,
290+
"ShowGeometry": true,
291+
"X": 438.48206968443355,
292+
"Y": -580.7858927393884
293+
},
294+
{
295+
"Id": "33cc7c39b92e42229d7b1f548ee3df17",
296+
"Name": "Element.Faces",
297+
"IsSetAsInput": false,
298+
"IsSetAsOutput": false,
299+
"Excluded": false,
300+
"ShowGeometry": true,
301+
"X": -62.50887323473182,
302+
"Y": -636.0117055743272
303+
},
304+
{
305+
"Id": "0521e9d6e7cd4888b3bfd6de24e8d155",
306+
"Name": "List.FirstItem",
307+
"IsSetAsInput": false,
308+
"IsSetAsOutput": false,
309+
"Excluded": false,
310+
"ShowGeometry": true,
311+
"X": 214.7431293888337,
312+
"Y": -634.160716078304
313+
},
314+
{
315+
"Id": "5e15f6be82c34576be5531f554e93d4a",
316+
"Name": "Number",
317+
"IsSetAsInput": false,
318+
"IsSetAsOutput": false,
319+
"Excluded": false,
320+
"ShowGeometry": true,
321+
"X": -486.7271641961486,
322+
"Y": -637.8119554980464
323+
},
324+
{
325+
"Id": "289b0ca1e11d4813bb3f3dba30d48bd6",
326+
"Name": "Element By Id",
327+
"IsSetAsInput": false,
328+
"IsSetAsOutput": false,
329+
"Excluded": false,
330+
"ShowGeometry": true,
331+
"X": -286.6180187154402,
332+
"Y": -638.0092766024787
333+
}
334+
],
335+
"Annotations": [],
336+
"X": 967.736968065059,
337+
"Y": 1391.8847288561624,
338+
"Zoom": 1.5376184155430068
339+
}
340+
}
61.4 KB
Loading

0 commit comments

Comments
 (0)