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
1
vote
2 answers
How to align in parallel a Brep object using one of its face to XY, XZ, or YZ plane?
I tried a few possibilities but I could not get it right. On SelectionChanged, I create a plane from a selected face. This is good, I can get the plane correctly.
var item = e.AddedItems[0];
if (item is…

N.TW12
- 241
- 2
- 11
1
vote
1 answer
How to make the text looked more clear in devdept eyeshot?
When am writing text on viewport by using entity "devDept.Eyeshot.Entities.Text" , it is not cleared
and some letters are shown to be bold and some are not. I dont know why. The code for this can also
be seen below.
Thanks in advance
Dim TT As New…

Anas Ahmed
- 123
- 9
1
vote
1 answer
How to create a multipoint line with vector at each vertex on a surface or edge
I am trying to create 5 axis machine application and in order to define the 3D position plus the orientation of an end effector, the common method is to calculate it from XYZIJK where XYZ is position in space and IJK is the direction vector. …

Phil Bugg
- 11
- 1
1
vote
1 answer
how i can measure width of text entity in Eyeshot Vb.net?
I want to measure text width in Vb.net. Just like i have a text entity, i can get or set the text height but unable to get the text width.Just like the text in the code, i want its width , i have set its height to be 0.25 in the constructor.
Dim a…

Anas Ahmed
- 123
- 9
1
vote
1 answer
Snappoint with eyeshot
i have make snap point to my application, but it make my application slowdown, some one can help me?
my application is drawing like autocad drafting. and i using eyeshot sdk to developt it.
it look like okay until i using pan/rotate.
this is my…

Nguyễn Lâm
- 19
- 1
- 1
1
vote
1 answer
How to defined layers by viewport on EyeShot?
I have a common eyeshot model (with entities) with multiple layers, i want to display multiple viewports and set which layers have to be visible. As i understand, layers are defined by model and not viewport ?
Best regards.

hamid badi
- 39
- 3
1
vote
2 answers
Problems detecting collision (Eyeshot) in an array of Tasks
I'm trying to check for each movement in a different task and after checking if there was a collision, in some iterations it generates an Exception "A source matrix was not long or sufficient. Check the index and length, as well as the lower limits…

A. Molin
- 11
- 2
1
vote
1 answer
Eyeshot PolyRegion2D.Union with tolerance
I would like to join two polygons which are nearly tangent. The problem is that the library that I use does not allow to specify a tolerance.
The method I tried to use is PolyRegion2D.Union. The result I would like to obtain should be a single…

stenio
- 297
- 1
- 10
1
vote
1 answer
Eyeshot 9 ReadAutodesk class displays DXF's TEXT entity as symbols
I'm using Eyeshot version 9 with my .NET app to display DXF files among other things. I'm having trouble with displaying TEXT entities from DXF file. All characters from TEXT entity are transformed and displayed as symbols.
I've tested same dxf…

Haris Hukić
- 11
- 1
- 1
- 3
1
vote
1 answer
Eyeshot disables touch events in the whole of application
I have a WPF application that uses touch events (TouchDown, TouchMove, TouchUp). Everything works fine. But if I give the ViewportLayout (Eyeshot 11) component somewhere to the application, the touch events will stop working in the whole of…

user3489644
- 25
- 2
1
vote
1 answer
Stitch surfaces into Solid3D
Is it possible to stitch together surfaces into a Solid3D using Eyeshot?
Or must we detect coincident edges and stitch together our self by creating the Solid3D and adding edges, vertices & faces?

Jas
- 71
- 4
1
vote
1 answer
Adding JSON metadata strings to a STEP file
I'm making use of DevDept's Eyeshot library to manage 3D graphics files which contain geometries that represent the parts of a metalcasting mold. Largely these are either basic Brep primitives or STL-file type imports, combined into one scene.
Each…

Rob Perkins
- 3,088
- 1
- 30
- 51
0
votes
1 answer
Joining two lines using Eyeshot
I am just stating to use Eyeshot. I would like to learn the method to join two line segments. The documentation does not show a join but does of union on a region. But I am unclear how the two lines can be a region.
Any help would be great.
…

user3786542
- 53
- 5
0
votes
0 answers
Does function Solid.Intersection() change input parameters?
I try to understand if it's necessary to clone solid objects, before calling Solid.Intersection().
Next test (prepared with help of ChatGPT) doesn't work.
I test Eyeshot v8.0.265.0.
[Test]
public void TestIntersectionCloning()
{
// Create two…

constructor
- 1,412
- 1
- 17
- 34
0
votes
1 answer
Difference between entities in Design.Entities and SkectchManager.Entities
I am new to using Eyeshot from devDept and as I read through the documentation and examples one of the things that I have noticed is that some of the examples add entities to the Design.Entities collection and some other examples add entities to the…

Carlos Perez
- 3
- 1