Results 1 to 6 of 6

Thread: Exploded Dimension

  1. #1
    AUGI Addict
    Join Date
    2006-04
    Location
    (0,0,+|Z|)
    Posts
    1,119

    Default Exploded Dimension

    I need some helps on this simple code.
    I can't figure out why it dosen't create exploded dimensions.
    Thanks for your help.

    Code:
    (defun c:TEST (/ CurrentAssoc Pt01)
    (setq CurrentAssoc (getvar "dimassoc"))
    (setvar "dimassoc" 0)
    (setq Pt01 (getpoint "\nSpecify 1st Point <Exit> : "))
    (command "._dimlinear" Pt01 pause)
    (setvar "dimassoc" CurrentAssoc)
    (princ)
    )

  2. #2
    I could stop if I wanted to pbejse's Avatar
    Join Date
    2010-10
    Posts
    395

    Default Re: Exploded Dimension

    Code:
    (defun c:TEST  (/ CurrentAssoc Pt01)
          (setq CurrentAssoc (getvar "dimassoc"))
          (setvar "dimassoc" 0)
          (setq Pt01 (getpoint "\nSpecify 1st Point <Exit> : "))
          (command "._dimlinear" Pt01 pause pause "")
          (setvar "dimassoc" CurrentAssoc)
          (princ)
          )

  3. #3
    I could stop if I wanted to Tharwat's Avatar
    Join Date
    2010-06
    Posts
    478

    Default Re: Exploded Dimension

    Needs more inputs ...

    Code:
    (command "._dimlinear" Pt01 pause pause "")

  4. #4
    I could stop if I wanted to Tharwat's Avatar
    Join Date
    2010-06
    Posts
    478

    Default Re: Exploded Dimension

    Oops pBe beat me to it

  5. #5
    AUGI Addict
    Join Date
    2006-04
    Location
    (0,0,+|Z|)
    Posts
    1,119

    Default Re: Exploded Dimension

    Thanks to pbejse and Tharwat.
    It works.
    Just get lost after playing with the iiiiiiiiInventor 2 years.

  6. #6
    AUGI Addict
    Join Date
    2006-04
    Location
    (0,0,+|Z|)
    Posts
    1,119

    Default Re: Exploded Dimension

    Another question:
    Why this doesn't work for polyline arc segment but arc?
    Code:
    (defun c:Test  (/ CurrentAssoc Ent01)
    (setq CurrentAssoc (getvar "dimassoc"))
    (setvar "dimassoc" 0)
    (setq Ent01 (entsel "\nSelect an arc or pline arc segment: "))
    (command "._dimarc" Ent01 pause "" pause "")
    (setvar "dimassoc" CurrentAssoc)
    (princ)
    )
    Thanks for your helps.

Similar Threads

  1. JPG exploded
    By waghorne in forum CAD Management - General
    Replies: 7
    Last Post: 2009-08-19, 02:51 PM
  2. Exploded Leaders
    By CCR in forum AutoCAD General
    Replies: 1
    Last Post: 2009-03-10, 08:16 PM
  3. Exploded In CAD!
    By winnwgomez in forum Revit - Plotting/Printing/Exporting
    Replies: 2
    Last Post: 2008-09-17, 01:55 PM
  4. exploded views?
    By mmarzluf in forum AutoCAD General
    Replies: 2
    Last Post: 2008-02-06, 08:43 PM
  5. Exploded Axonometric
    By j_tancharoen15 in forum Revit - Student Support
    Replies: 1
    Last Post: 2007-05-10, 06:19 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •