Author Topic: _explode versus _.explode  (Read 1927 times)

0 Members and 1 Guest are viewing this topic.

Andrea

  • Water Moccasin
  • Posts: 2372
_explode versus _.explode
« 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..  :?
Keep smile...

Andrea

  • Water Moccasin
  • Posts: 2372
Re: _explode versus _.explode
« Reply #1 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")

Keep smile...

Jürg Menzi

  • Swamp Rat
  • Posts: 599
  • Oberegg, Switzerland
Re: _explode versus _.explode
« Reply #2 on: November 22, 2005, 03:35:27 PM »
Undefined explode command? The '.' overwrites an undefined command.
A computer's human touch is its unscrupulousness!
MENZI ENGINEERING GmbH
Current A2k16... A2k24 - Start R2.18

Andrea

  • Water Moccasin
  • Posts: 2372
Re: _explode versus _.explode
« Reply #3 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..
Keep smile...

deegeecees

  • Guest
Re: _explode versus _.explode
« Reply #4 on: November 22, 2005, 03:46:28 PM »
Nested entities?

Andrea

  • Water Moccasin
  • Posts: 2372
Re: _explode versus _.explode
« Reply #5 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
Keep smile...