ZiyunShang

Results 52 comments of ZiyunShang

Hi @DanielHurtubise , this my be new UI for Dynamo, and I can't see that icon in the latest version :) ![Capture](https://user-images.githubusercontent.com/33445445/147028420-f59331d4-ed3f-429d-934c-4b925bd4c348.PNG)

Well, I just double check this icon, you may need to uncheck "Preview" of this node, that "eye icon" will appear. ![Capture](https://user-images.githubusercontent.com/33445445/147623728-2e679770-1e8a-4e33-ba24-1386c6b3428e.PNG)

Hi @karambk , we have already create a jira task tracking this issue - https://jira.autodesk.com/browse/REVIT-176082

Hi @karambk @BurcuOlcer , sorry for late response. This issue has been fixed by Revit team, and released in Revit 2023 now. You can try the new Revit version 2023.

I think this is because the name of each Node has not been translated into each language, and it is searched as a proprietary word. I don’t know if this...

Hi @ricardyn , I just tried "ToRevitType()", ![ConvertCurveToRevitType_2020-06-10_04-06-57](https://user-images.githubusercontent.com/33445445/84243742-38a25300-ab35-11ea-814a-515496a01db6.png) Here is my python script: ``` import sys import clr clr.AddReference('ProtoGeometry') from Autodesk.DesignScript.Geometry import * clr.AddReference('RevitNodes') import Revit clr.ImportExtensions(Revit.Elements) clr.ImportExtensions(Revit.GeometryConversion) # The...

Hi @NonicaTeam , "Select Parameter Type" and "Select BuiltIn Parameter Group" will be removed in coming version, and they will be replaced by "Spec Types" and "Group Types" nodes.

Yes @NonicaTeam , you may refer to this PR - https://github.com/DynamoDS/DynamoRevit/pull/2770

As Michael guessed, an error occurred there. For your RuledFace, face.get_Curve(0) returned null, and face.get_Curve(1) returned a Arc line. For the current code, it can't create a Dynamo Surface here.

Hi @mjkkirschner , for this Geometry, its profile in Revit is composed of three surfaces, as shown. ![SideFace](https://user-images.githubusercontent.com/33445445/127617955-7c4396f6-a186-4bc2-96b3-761d5879f54e.png) As you can see, the surface consists of a triangle and two...