Is there a way to select a GraphicsEntity with the mouse?

I am creating a graphical object in Factory3D (for example, a point using CreatePoint(IWorldPoint, Double)). Is it possible to select the displayed object with the left mouse button?
The idea is that the user should select a point on the drawn geometry, and then some algorithm will be executed. The geometry cannot be loaded directly into the project because it would make changes to the user's project, so I am using Factory3D.
Comments
-
No this is not a current feature for selection or interacting with the Factory3D entities. I would potentially recommend using a second geometry import object to import the CAD file without changing the original CAD. You can then even set these bodies as construction bodies, and they will not be meshed or interact with the solver, just exist in the graphics for typical UI interaction.
0 -
@Mike.Thompson said:
No this is not a current feature for selection or interacting with the Factory3D entities. I would potentially recommend using a second geometry import object to import the CAD file without changing the original CAD. You can then even set these bodies as construction bodies, and they will not be meshed or interact with the solver, just exist in the graphics for typical UI interaction.Thank you for your help!
0