The Initial Graphics Exchange Specification (IGES) is a vendor-neutral file format that allows the digital exchange of information among computer-aided design (CAD) systems. It's an ASCII-based textual format.
Questions tagged [iges]
3 questions
1
vote
0 answers
How do I generate Bezier Curves and NURBS in C++ and import it as an igs?
I am new to C++ NURBS libary. I learnt generating line (by CLine, from nurbs.h ) and save it as igs. But in case of
multiple control points, how to generate a curve ? Every other tutorial using graphics.h
(putpixel), but couldnt find anything about…

san
- 23
- 1
- 5
1
vote
2 answers
Python given implicit equation, find points on that equation?
Context: Convert an .iges to .vtk.
I have the following equation Ax^2+Bxy+Cy^2+Dx+Ey+F=0 representing a conic section.
The parameters A~F are given. I want to find points on the conic section, so that I can connect them with lines, and make a…

Inyoung Kim 김인영
- 1,434
- 1
- 17
- 38
0
votes
0 answers
How to set the model size of gmsh in python
When I use the following code to open an iges file without units, the coordinates of the points of the generated model are magnified 1000 times.
def LoadIges(self, filename, lcf=None):
gmsh.initialize()
# try:
gmsh.open(filename)
…

aLIEz
- 1