Eyeshot is a CAD control for .NET Framework developed by devDept Software. It's integrated into Visual Studio toolbox for WinForms and WPF applications and it targets OpenGL and Direct3D graphics libraries.
Questions tagged [eyeshot]
105 questions
0
votes
1 answer
What is the correct way to remove an entity and all of its collection data?
In Eyeshot, what is the best way to remove an Entity from the Model that is a BlockReference?
Are there methods to help clean up all the Blocks based on BlockReference?
// assume "model1" is the Eyeshot control
List entities =…

Dan Liebster
- 455
- 5
- 22
0
votes
2 answers
Is it possible to activate the animated busy/progress indicator outside of a WorkUnit?
I would like to activate the spinning progress indicator and specify a message on the Eyeshot control to provide feedback to the user when other long running processes are occurring that are related to the items in the view. This work is happening…

Dan Liebster
- 455
- 5
- 22
0
votes
1 answer
Is that possible to show huge point cloud with billions of points in Devdept eyeshot control like other point cloud software
When I tried Fastpointcloud with 1 million points, it is very slow when I zoom or pan. Could you please let me know is there any way to show billion of points in Devdept eyeshot control like other point cloud software ex. AutoCAD?
Thanks in advance

prabhat
- 3
- 2
0
votes
1 answer
How to run eyeshot in docker
I'm trying to run a .net 4.8 application written in C# in a windows docker container.
I'm using eyeshot 2021
Dockerfile:
FROM mcr.microsoft.com/dotnet/framework/runtime:4.8
COPY . .
Application code:
using devDept.Eyeshot;
namespace My.Last.App
{
…

Prmejc
- 155
- 1
- 2
- 13
0
votes
1 answer
Can an entity's sub entity could be selected?
I created several entities and add the block reference of them to another entity. And then I will rotate and translate the parent entity. But I want to use mouse to select those sub entities added to this as a block reference to get the selected…
0
votes
1 answer
How to create a Block contains some Blocks in Eyeshot devdept
I've tried to grouping some Entities in a Block object and it is done. But I need to group some Blocks of Entities.
Is there any way to grouping Blocks and add them to the main Model object?
Just like CAD software you can create assembly of…

Masoud Hosseiny
- 33
- 5
0
votes
1 answer
How to change position of imported STL file by coordinates
What is the way to set and get position of imported STL file. I'm looking for a solution to set position x,y,z to imported STL file like is possible for example to Joint.
0
votes
1 answer
How to draw the bounding box of a brep entity on viewport?
I'd like to draw the bounding box of a selected entity. I can have it done by drawing line by line, however, I see it offer the BoundingBox but I cannot get it to work. I am not sure how it can add the box to theModel so it can be drawn.
…

N.TW12
- 241
- 2
- 11
0
votes
2 answers
Draw polygon from unordered points
So, I know that there are similar questions and I searched a lot before typing my code and asking this question.
In my case, the user clicks on a place on the screen to add a point. When the user finishes adding points, makes a right click to say…

Coskun Ozogul
- 2,389
- 1
- 20
- 32
0
votes
0 answers
Eyeshot FPS is low in perspective projection
If I use a high resolution image (about 15000 * 15000) and perspective projection then the scene is very slow (FPS is low).
If set the Orthographic projection then the FPS is high
What needs to be done so that the FPS in the perspective projection…

Sergey
- 1
0
votes
2 answers
How to select a list of entities and get their properties in eyeshot?
I want to select a list of entities by mouse click and then require their properties. I know one can select entity by using (please view code)
but how one can get the properties of this list of entities (for example if entity is cylinder and…

Anas Ahmed
- 123
- 9
0
votes
1 answer
How to create Screw shape using Eyeshot's functions
I need to create screw shape using Eyeshot's libraries in .NET application.
In SolidWorks this is easily accomplished with creating the shape/profile that needs to be swept/stretched, and helix curve which is used as a rail or direction.
In…

TutaBugarin
- 9
- 3
0
votes
1 answer
How to combine two or more solids in Eyeshot (VB.net)?
Dim ACone As New Solid
ACone = Solid.CreateCone(5, 5, New Point3D(0, 0, 0), New Point3D(0, 0, 50), 20)
DisplayEyeshotBlock.Entities.Add(ACone)
Dim BCone As New Solid
BCone = Solid.CreateCone(5, 5,…

Anas Ahmed
- 123
- 9
0
votes
1 answer
PointCloud - modify scale on Z axis
I'm working with Point cloud. I would like display my point cloud with a factor scale in Z direction. Then I increase visually the default.
I tested transformation "Scale" on my entity but it seems not work :
PointCloud c = new…
0
votes
2 answers
View Cube - user specified labels
I want to change the View Cube labels in the Eyeshot model.
E.g. The user should be able to change the "S" direction to just what pleases the user.
What I have done
In the xaml I have accessed the "FrontRingLabel" and then bind it to…

Steffen
- 140
- 1
- 5