Autodesk Navisworks API
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Limit selection to specific objects
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
I would like to limit the selection to spicific objects. A portion of the model is transparent and I would like to be able to select objects through the transparent objects. Is that posible? Thanks.
Re: Limit selection to specific objects
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi,
I'd suggest you take a look at Find API of Navisworks. here is one post which you could get started with.
http://adndevblog.typepad.com/aec/2012/05/naviswor
e.g. for your question, one way could be:
Document oDoc =
Autodesk.Navisworks.Api.Application.ActiveDocument ;
IEnumerable<ModelItem> items =
from x in oDoc.Models[1].RootItem.
DescendantsAndSelf
where x.HasGeometry && x.Geometry.ActiveTransparency >0
select x;
// highlight the items
oDoc.CurrentSelection.CopyFrom(items);
Xiaodong Liang
Developer Technical Services
Autodesk Developer Network
Re: Limit selection to specific objects
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
I'm not sure I've explained myself clearly. I have a model with several modelItemCollections. Some of the modelItems are have a 95% transparency, the rest no transparency. I want to select on the screen but only be able to pick the non-transparent modelItems. They are part of thier own modelItemCollection. So in the attached image, if the user clicked where the red arrow is, they woukd get the cyan modelItem, even though that modelItem is behind the transparent modelItem denoted with the red boundry. Thanks.
Re: Limit selection to specific objects
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi,
I see. you want to cusmomize the selection when user is selecting. Sorry, in current releases, the picking behavior cannot be customized. Even though you could get OnCurrentSelectionChanged(/Chaning), API does not allow you to change the selection in the events.
Xiaodong Liang
Developer Technical Services
Autodesk Developer Network
