Posts

Showing posts from October, 2018

Revit Dynamo Tricks shared by Jacob Small at autodesk

Jacob Small at Autodesk shares some hashtag # dynamo tricks with me to expose hashtag # parameters and hashtag # methods of elements in lists using a code block in Dynamo with some of the following tricks:  a.Parameters;  a.Parameters.Name;  a.GetParameterValueByName(“ParamName”);  DSCore.Object.Type(a);

Python transpose list (From Stack Excchange)

From https://stackoverflow.com/questions/23525451/how-do-i-transpose-a-list ##Transpose to new list new_list=[] old_list=(item1,item2,item3,item4) new_list=map(list, zip(*old_list)) ##List is the FUNCTION that creates the list. ##Transposed list in new_list