- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
This is a code that examines interference.
ElementIntersectsElementFilter elementIntersectsElementFilter = elementIntersectsElementFilter = new ElementIntersectsElementFilter(fs);
var filters = new FilteredElementCollector(doc)
.WherePasses(elementIntersectsElementFilter)
.ToList();
if (filters.Count == 0)
{
continue;
}
This is a code that examines touched.
ElementTouchsElementFilter elementTouchsElementFilter = elementTouchsElementFilter = new ElementTouchsElementFilter(fs);
var filters = new FilteredElementCollector(doc)
.WherePasses(elementTouchsElementFilter)
.ToList();
if (filters.Count == 0)
{
continue;
}
However, there is no function called ElementTouchsElementFilter.
I want ElementTouchsElementFilter
I want to make sure that it has touched the surface.
What I'm working on is a square duct.
Is there a way to check the touched side?
Is there a way to test the a surface joint together?
Is there a way to test the surface face to each other?
Sorry, I am not good at English, so I used a translator.
Solved! Go to Solution.
Developer Advocacy and Support +