Questions tagged [eyeshot]

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.

105 questions
7
votes
1 answer

Could not load file or assembly 'CopyModules.dll' or one of its dependencies. The specified module could not be found

The published app that uses WPF controls of Eyeshot Ultimate 11 throws an exception with the following message when devDept.Eyeshot.Translators.ReadAutodesk is called: Could not load file or assembly 'CopyModules.dll' or one of its dependencies.…
ab3nash
  • 156
  • 1
  • 8
4
votes
2 answers

Selecting edges and vertices of a Solid3D entity in Eyeshot 11

I have a Solid3D object inside a block and need to select its edges. I tried: viewport.SelectionFilterMode = selectionFilterType.Edge; viewport.ActionMode = actionType.SelectByPick; As the block is treated as a single object, doing so would…
4
votes
1 answer

Which Eyeshot entity is more efficient?

I am using the WPF Control Eyeshot (http://www.devdept.com/) to build an application where I handle multiple 3D entities, but I do not perform boolean operations between them. Eyeshot offers me the following options for entities of this sort…
celsound
  • 59
  • 8
3
votes
2 answers

Running library for framework 4.8 for a .NET 6 API

I've seen a few conflicting answers about this topic so I'm hoping someone can lead to the right one. I'm building an API that uses devdept Eyeshot library. This library requires .net framework 4.8. I would like to use .NET 6 for my API because from…
2
votes
1 answer

How do I unlock Eyeshot in C# console-app

I’m a student doing a project with the company. As part of this project, I’m developing a console application using eyeshot 2021. I’ve used an activation key before for a WPF project and that application worked fine. This console-app is created…
2
votes
2 answers

Smoothing 3D files

I am trying to apply a smoothing algorithm on a .STL file. I use Eyeshot from DevDept to load and manipulate STL files. There is no built-in method in Eyeshot. To apply a smoothing algorithm, I try to convert the Eyeshot entity to an entity in…
2
votes
1 answer

How to serialize derived class into Eyeshot proprietary file format

I am trying to serialize custom EntityData class into Eyeshot proprietary file format. There is a great article about this (https://devdept.zendesk.com/hc/en-us/articles/360003318873-Eyeshot-Proprietary-File-Format), it works fine if I serialize…
niks
  • 579
  • 1
  • 3
  • 14
2
votes
1 answer

how can i extract region to mesh or solid using eyeshot?

i'm trying to create navigation mesh on autodesk naviswork using Eyeshot. convert vertices and IndexTriangle to vertice triangles, after create solid using Solid.FromTriangles(). var solidList = new List(); var Solid =…
Twily
  • 21
  • 2
2
votes
1 answer

Find difference between two 3D shapes using devDept Eyeshot

What's the best algorithm to find the difference in two three dimensional shapes loaded in devDept Eyeshot? I have loaded the two shapes from CAD files in Eyeshot and want to highlight the difference in the shapes. Thanks in advance.
ganeshran
  • 3,512
  • 7
  • 41
  • 69
1
vote
1 answer

How to export EMF files from eyeshot in the background?

I want to export an emf image file from eyeshot in background, but can not generate it successfully. Here is my code: using (devDept.Eyeshot.Design VP = new MyDesign()) { VP.CreateControl(); VP.Viewports.Add(new Viewport()); Line line =…
Ming
  • 11
  • 3
1
vote
1 answer

How to draw a finite line in Eyeshot 12

I need to draw a line representing a z-axis from the origin up x units. I was able to create an xy plane by assigning one to Model.Grid.Plane. For context I will be building a point cloud to insert as an entity on the grid (already figured that…
Kyle A
  • 13
  • 2
1
vote
1 answer

Loading multiple step files into the model, but they are not visible

Ia loading multiple step files into the model, but they are not visible. However when loading the step files one by one, they are visible. What is the problem... protected override void OnLoad(EventArgs e) { List stp_list = new…
이인석
  • 11
  • 1
1
vote
1 answer

Extracting points and edge vectors

I am creating a program to generate a path for a CNC machine laser/plasma cutting. In it, the user should be able to cut shapes in the base element and be able to acquire the points and vectors of those cuts. I added the possibility to draw…
Reszczyk
  • 11
  • 2
1
vote
1 answer

Eyeshot Devdept Solid to surface

I am using the version 2020 of eyeshot. There is a function called CutBy which cuts a mesh by a surface and it works fine. The problem is getting the surface. For exemple, from a solid or a mesh, how to create a surface. For exemple, I have a solid…
Coskun Ozogul
  • 2,389
  • 1
  • 20
  • 32
1
vote
1 answer

ClippingPlane (Eyeshot) mesh not visible

I am struggling to show meshed planes when executing Edit() function from ClippingPlane1 from my Model. It only shows the moving reference coordinate, cappings, objects, etc... except the planes. When debugging, it appears that the clippingPlaneMesh…
1
2 3 4 5 6 7