Re: Add Revit Links to Project with C#
For completeness, my 2017 requires:RevitLinkLoadResult result = RevitLinkType.Create(doc, path, options);
View ArticleRe: Add Revit Links to Project with C#
Thanks and , I guess what I posted is old because I am developing that tool for Revit 2017. I actually have another question, which I tried to solve by searching here on the forum and elsewhere but...
View ArticleRe: Add Revit Links to Project with C#
Once again, you are in luck. I implemented a BrowseDirectory utility method using the .NET FolderBrowserDialog function for my ExportCncFab add-in:...
View ArticleRe: Problem with solid creation by TessellatedShapeBuilder
Thanks, I have also thought of it. The thickness in my soil layer is actually controlled by the distance between top grid point and bottom grid point. So after the adjustment as said should it always...
View ArticleRe: Problem with solid creation by TessellatedShapeBuilder
Whatever problem you run into, try reproducing the same issue manually through the user interface. That will probably provide more information on what the problem is than the Revit API does.
View ArticleRe: Problem with solid creation by TessellatedShapeBuilder
Unfortunately Ican not, because the solid to import is created by an external 3D librarynot by Revit API.
View ArticleRe: Problem with solid creation by TessellatedShapeBuilder
Yes you can :-) For instance, you can extract vertices from the external data and create points in Revit representing them, then manipulate those in the UI.
View ArticleRe: Problem with solid creation by TessellatedShapeBuilder
oh, I am newbie with modelling :) How to create a point in Revit? As a reference point? Could I try to build a solid or mesh from points?
View ArticleRe: Problem with solid creation by TessellatedShapeBuilder
Hi, have a look at TessellatedShapeBuilderResult.GetIssuesForFaceSet. In fact, you may localize exactly the face(s) respectively the vertices causing the problem. Each TesselatedBuildIssue provides a...
View ArticleRe: SetComparisonResult incorrectly returns Equal with elliptical arcs
Hi Jeremy Sure, please find attached. I'm using Revit 2018.2. Thanks for your support on this matter! Tom
View ArticleRe: Problem with solid creation by TessellatedShapeBuilder
I got a following exception when calling TessellatedShapeBuilder.Build(). After catching the exception GetBuildResult() returned nothing. ex2 {"Could not create consistent vertex...
View ArticleRe: Problem with solid creation by TessellatedShapeBuilder
Hi, before invoking the Build method, you could check the input:TessellatedShapeBuilder.DoesFaceHaveEnoughLoopsAndVertices(TessellatedFace) Revitalizer
View ArticleRe: ElementIntersectsFilter.IsElementSupported() incorrectly returns true for Ro
HI Jim - Impact on your application and/or your developmentModerate- The number of users affectedModerate- In the case of a request for a new feature or a feature enhancement, please also provide...
View ArticleRe: SetComparisonResult incorrectly returns Equal with elliptical arcs
Dear Thomas, Thank you for the RVT sample model and macro. For the sake of completeness and convenience for others reading this thread, here is the macro code, adapted to run in Revit 2018.2: private...
View ArticleRe: Problem with solid creation by TessellatedShapeBuilder
I did, actually all faces were just triangles, so I got no error during check.
View ArticleRe: How do I find a direction and a value of AreaLoad from its 3 ForceVectors?
Thank you for your answer, but my question is not about the work plane.I need to know how to calculate the average of ForceVector1, ForceVector2, ForceVector3 (possibly directed differently) and values...
View ArticleRe: How to filter RebarBarType + rebarStyle.Stirrup
Hi Mr.Jeremy,Thanks for your valuable replay. Please correct the code. I feel, I have made a mistake. FilteredElementCollector a = new...
View ArticleRe: Sorting Parameters in the Family Editor
Jeremy: thanks for the response. Sorry, but The code I posted had sortParameters when I intended to change it to ReorderParameters. The parameters can be reorederd any way in Revit, and I think the...
View ArticleRe: Edit Detail Element Family
Hi Mustafa, I tried your solution, but there is a problem. the arc position and rotation is not correctWhy detail curve is not oriented with the rebar? Stefano
View ArticleRe: How do I find a direction and a value of AreaLoad from its 3 ForceVectors?
You can try this:Find reference points position, using AreaLoad.GetRefPoint method, create a curveloop - first triangle. Then to all 3 point add appropriated force vectors (you need to calculate it in...
View Article