Search found 7 matches
- 29 Jun 2012, 14:40
- Forum: CAD VCL
- Topic: DXF length limitations
- Replies: 3
- Views: 18872
Re: DXF length limitations
Hello Alexander, I'm not asking about limitations at CAD Export VCL, it is about limitations at DXF especifications. I exported three meshes with a lot of triangles (more than 100.000). Neither Rhino nor Autocad imports correctly this DXF file. I have been doing some tests from Rhino trying to expor...
- 28 Jun 2012, 12:49
- Forum: CAD VCL
- Topic: DXF length limitations
- Replies: 3
- Views: 18872
DXF length limitations
Hello
Is there any limitation in the number of vertex or the number of faces when you try to export a mesh at DXF format?
Thanks
Is there any limitation in the number of vertex or the number of faces when you try to export a mesh at DXF format?
Thanks
- 03 Feb 2009, 12:02
- Forum: CAD VCL
- Topic: How to Export a DXF?
- Replies: 4
- Views: 23534
Re: How to Export a DXF?
Hi again It seems that it works. Now I have a new question. When I am exporting the layers there is a new layer created by default: Source code: if FCADImage.Converter.LayerByName('0') = nil then// always not nil Why is that line included in your code? Is this necessary or can I avoid to export that...
- 19 Jan 2009, 10:44
- Forum: CAD VCL
- Topic: How to Export a DXF?
- Replies: 4
- Views: 23534
Re: How to Export a DXF?
Thank you by your response.
I'm going to test your solution...
I'm going to test your solution...
- 16 Jan 2009, 12:34
- Forum: CAD VCL
- Topic: How to Export a DXF?
- Replies: 4
- Views: 23534
How to Export a DXF?
Hello I don't know how to export the entities I have. I draw in a windows device context using Open GL instructions but I don't know how to export that to a DXF file. I tried this: TWinControl *Wnd; ...... //Draw the entities in the DC of the window TsgDXFExport *E = new TsgDXFExport(); try { Wnd->P...
- 27 Nov 2008, 14:06
- Forum: CAD VCL
- Topic: Importing Spline entity
- Replies: 3
- Views: 18367
Re: Importing Spline entity
Thank you aby but I think that I haven't explained the problem correctly. I suppose that I have solved the problem of taking an "int" value from knots array but this is not the corret data type, the correct data type is Single ( or float ). Here it is an example: Knots values: 0.0, 0.0, 0.0, 0.0, 1....
- 26 Nov 2008, 11:06
- Forum: CAD VCL
- Topic: Importing Spline entity
- Replies: 3
- Views: 18367
Importing Spline entity
Hello, I've been searching about a topic with this information but I couldn't find it. My doubt is about the Knots data. This is a TList containing single type values represented as pointers. How can I conver this "pointers" into Single values. The normal casting in the example doesn't works. vFit: ...