Questions tagged [cad]

Computer-aided design (CAD) is the use of computer technology for the process of design and design-documentation.

Computer-aided design (CAD) is the use of computer technology for the process of design and design-documentation. CAD is relied upon in various fields such as engineering, manufacturing and survey. Many CAD programs have an in-built means of programming their functionality. Examples being a macro language or lisp. Other programs may offer, or have had reverse-engineered, an API for more in-depth coding. There are various drawing formats, with .dxf being a ubiquitous one for interchange.

552 questions
2
votes
0 answers

6D pose estimation of a known 3D CAD object with limited model training for a new object

I'm working on a project where I need to estimate the 6DOF pose of a known 3D CAD object in a single RGB image - i.e. this task: https://paperswithcode.com/task/6d-pose-estimation. There are several constraints on the problem: Usable commercially…
2
votes
1 answer

Real time 6D pose estimation of known 3D CAD objects from a single 2D image or point clouds from RGBD Camera when objects are one on top of the other?

I'm working on a research project where I need to estimate in real time the 6DOF pose of objects in a pick and place tasks. The pose must be estimate in real time, and the objects can be one on top of the other and identical, so I have to get the…
2
votes
2 answers

SHX font specification and the license of the font files

I'm trying to implement a simple plot viewer that only can draw lines. Drawing the shapes like a triangle or rectangle was easy to implement but the font was not. I've found there are line fonts for AutoCAD which are compiled as .shx font…
상빈이
  • 23
  • 2
2
votes
0 answers

Designing window frames (of real houses) with React

In my new project with React, I need to implement an environment for designing doors and windows so that the user can design frames through the browser (like the two figures below) and then save it on the server-side. Then I have to fetch and…
Ahmad
  • 21
  • 3
2
votes
2 answers

Possibility of Auto CAD drawing using ASP.Net Web API

I would like to know the possibility of drawing the Auto CAD 3D shapes using ASP.Net. I have came across some blogs which tells that could convert the CAD files to PDF files and i didn't get any info about drawing Auto CAD shapes using .net. Also i…
Mathankumar
  • 105
  • 1
  • 11
2
votes
1 answer

generate G-code | decompose b-spline to circular sections

I'm trying to decompose a b-spline to a set of circle definitions. I'm trying to generate G-code; the idea here is to segment a b-spline into a number of circular interpolations [ G02 ]. Using PythonOCC I can break up the b-spline into a number of…
Jelle
  • 690
  • 4
  • 13
2
votes
2 answers

Is there an efficient way to convert a3d scene to a 2d Enhanced Metafile

I am developing a CAD application using Delphi2010 and OpenGL. Currently, i am working on a module to export the current view to an Image file. This is pretty straigthforward for raster formats (render scene to offscreen Buffer of desired…
sum1stolemyname
  • 4,506
  • 3
  • 26
  • 44
2
votes
2 answers

Creating 3D geometry - CAD software

I want to create a 3D geometry of the following image. I could find ways of generating centerlines using image processing tools in Mathematica. But I am not sure how to generate 3D geometry from the skeleton. Could someone suggest CAD software…
Natasha
  • 1,111
  • 5
  • 28
  • 66
2
votes
1 answer

Does Catias 3dxml format contain CAD as Nurbs, or is it just a triangulated/polygonal mesh?

I am curious if 3DXML is actually a Mesh or if it is Nurbs. Is it limited when compared to a Catpart/Catproduct assembly? My background is not Cad so apologies if this isn't a good question
2
votes
1 answer

How can I get the position of a CAD part via VBscript?

I want to write a VBScript, which outputs the position of a CAD part (x,y,z). The Input should be the partnumber. This is what I tried. Sub CATMain() dim pos(11) for n = 1 to CATIA.Documents.Count set Dokument =…
2
votes
1 answer

Transform font into polygons

I am working with CAD software (specifically FreeCAD, but this should be system agnostic), and I want to draw 2D characters as polygons - not as strokes. e.g. the letter "O" might be made up of two concentric circles. Is there a way to produce such…
fyodrpetrovich
  • 135
  • 1
  • 7
2
votes
0 answers

does revit import xdata contains in a dwg file? if not, why?

I need to collect xdata information pf .dwg file in revit. but I did not find a way to do that. I'm wondering whether this kind of information is also imported as other information? I think revit should import this kind of information. because I…
2
votes
2 answers

Open a file in a new instance of program

All; I have a bit of code I've written that opens a design blueprint when I scan a bar code. It works well enough, but I'd like to open a new instance of the design software (Solidworks) and have the print display in the new instance. Right now, no…
2
votes
1 answer

Upload Cad files in laravel

Is it possible to upload cad files to a page created with laravel? I have seen that in the MimeType class that they offer there is none of the extensions that interest me (STL, OBJ,FBX,DAE,3DS,IGES,STEP,VRML,X3D) and I have tried to use the known…
Cristina V
  • 117
  • 7
2
votes
1 answer

Extracting parametric equations from STEP file

I would like to read a STEP file generated from a CAD software and extract the equations that define geometry. SolidWorks has a similar functionality that recognizes geometric features form generic CAD formats such as IGES or STEP. Is there a…
user3408085
  • 120
  • 10