Back


Newsgroup comp.cad.autocad 48605

Directory

Subject: DXF-Files in R13c4 German failure -- From: Jochen Geschwentner
Subject: Re: Corrupted Drawing in R13c4-HELP PLEASE -- From: "Owen Wengerd"
Subject: Re: HELP: Spline Entity List -- From: "adi"

Articles

Subject: DXF-Files in R13c4 German failure
From: Jochen Geschwentner
Date: Tue, 21 Jan 1997 22:39:41 +0000
Hi CADies !
Did anybody happen to NOT manage to import DXF-Files into R13
because of errors like "theres no block named ..." or "there is
no linestyle like ..." ???
Yes I tried it all the way. With an empty startup-modell or not. It
allways fails to succeed. But the strange thing is that if you try
the same file with ACAD LT 3 it just works fine.
Any suggestions ????
Thanks allready !
Return to Top
Subject: Re: Corrupted Drawing in R13c4-HELP PLEASE
From: "Owen Wengerd"
Date: 21 Jan 1997 22:37:30 GMT
Tim, try to INSERT * (exploded) the corrupt drawing into a new, no
prototype drawing.
-- 
 Owen Wengerd   [ManuSoft]
 ** AutoCAD Wizard At Large **
 http://www.manusoft.com
 owenw@manusoft.com
 Compuserve: 71324,3252
Tim  wrote in article
<5c09gm$ckf@news.enterprise.net>...
[ ... ]
> Fatal Error - Unhandled Exception
> 
> then it asks if I need to save it, but it will not let me and crashes
> out. Im using NT4, but the drawing does the same from Win95.
[ ... ]
Return to Top
Subject: Re: HELP: Spline Entity List
From: "adi"
Date: 21 Jan 1997 22:33:42 GMT
Paul:
Here is an example for simple spline data extraction. With some
modifications, I think that you can make it work in your program:
;pick spline
(setq your_spline (entget (car (entsel))))
;extract all 11s fit points
(setq elevens (member (assoc 11 your_spline) your_spline)) 
;extract last fit point
(nth (- (length elevens) 1) elevens)
; and so on...
Hope this helps,
Adi
Paul Lynn Sesto  wrote in article
...
> 
> Hello and thanks for reading,
> 
> Has anyone started to use the spline entity list with R13.
> Specifically my problem is trying to access the group code 
> 11 that is for the fit points. From the Autocad 
> customization guide page 555 it states that multiple group 
> 11 entries can exist. This I know since for each fit point 
> there is a dotted pair. But how do you access the fit points 
> beyond the first one. Why I need this is that I want to 
> access the fit points of the spline in order to write the 
> fit points to a file.
> The 'assoc 11' only accesses the 1st fit point.
> 
> Any suggestions??
> 
> Thanks, 
> 
> Paul
Return to Top

Downloaded by WWW Programs
Byron Palmer