TheSwamp

CAD Forums => CAD General => Topic started by: Andrea on November 22, 2005, 03:05:49 PM

Title: _explode versus _.explode
Post by: Andrea on November 22, 2005, 03:05:49 PM
Hi,

I have noted something about the explode command..

(vl-cmdf "_.explode" "_l" "")

is different from

(vl-cmdf "_explode" "_l" "")


in fact, if I have a simple POLYLINE and use _.explode (with the dot)
this will explode the block and convert POLYLINE to LINE... !!???    :|

But if I use _explode (without the dot) the POLYLINE still POLYLINE.

is this normal ?

if yes...this is something new for me..  :?
Title: Re: _explode versus _.explode
Post by: Andrea on November 22, 2005, 03:30:36 PM
in fact...try this...

because it's weard....I do not understand why ??
it work if you don't scale and rotate the block..

like this...

Code: [Select]
(vl-cmdf "_.insert" "_test" pause "" "" "")
(vl-cmdf "_explode" "_l")

Title: Re: _explode versus _.explode
Post by: Jürg Menzi on November 22, 2005, 03:35:27 PM
Undefined explode command? The '.' overwrites an undefined command.
Title: Re: _explode versus _.explode
Post by: Andrea on November 22, 2005, 03:43:24 PM
Undefined explode command? The '.' overwrites an undefined command.

thanks..I know that..but it's not the problem..
Title: Re: _explode versus _.explode
Post by: deegeecees on November 22, 2005, 03:46:28 PM
Nested entities?
Title: Re: _explode versus _.explode
Post by: Andrea on November 22, 2005, 03:56:55 PM
I FOUND IT !!

ok..in fact is when the aspect ration was changed during insertion and than exploded..
the PLINES is converted to LINES..

but.........WHY !!? :x