Results 1 to 5 of 5

Thread: SNAPANG

  1. #1
    Active Member
    Join Date
    2015-10
    Posts
    73
    Login to Give a bone
    0

    Default SNAPANG

    Good morning, I am wondering if there is a command or lisp that will set the snapang of multiple mviews to zero. I know it seems like a small thing to have to change, but last night I had to do it for over 70 MVs.
    TIA

  2. #2
    AUGI Addict madcadder's Avatar
    Join Date
    2000-11
    Location
    Too far from the beach
    Posts
    1,054
    Login to Give a bone
    0

    Default Re: SNAPANG

    Save this as a lisp and load it.
    Maybe throw it into you acaddoc to autoload
    If you don't like "s0" change it to whatever.

    Code:
    (DEFUN c:snapangzero ()
      (SETVAR "snapang" 0)
      (PRINC)
    )
    (DEFUN C:s0 ()
      (C:snapangzero)
    )
    Edit: oops... that was just for every viewport you are in. Repost the question in the LISP group and I'm sure you will get a better answer.

  3. #3
    Active Member
    Join Date
    2015-10
    Posts
    73
    Login to Give a bone
    0

    Default Re: SNAPANG

    Thanks madcadder, now to find the "Lisp" group.....

  4. #4
    Administrator Opie's Avatar
    Join Date
    2002-01
    Location
    jUSt Here (a lot)
    Posts
    9,096
    Login to Give a bone
    0

    Default Re: SNAPANG

    If you have a technical question, please find the appropriate forum and ask it there.
    You will get a quicker response from your fellow AUGI members than if you sent it to me via a PM or email.
    jUSt

  5. #5
    Active Member
    Join Date
    2015-10
    Posts
    73
    Login to Give a bone
    0

    Default Re: SNAPANG

    Opie to the rescue........as always!!
    Thanks, Opie

Similar Threads

  1. (getvar "snapang") not yielding correct value...
    By kmayhew936033 in forum AutoLISP
    Replies: 4
    Last Post: 2009-12-10, 02:20 PM
  2. snapang (can you rotate bounding box too)???
    By mark.momper in forum AutoCAD General
    Replies: 1
    Last Post: 2008-08-07, 01:00 PM
  3. Snapang to toggle between 0 & 45
    By kwong in forum AutoLISP
    Replies: 15
    Last Post: 2005-06-23, 03:03 AM

Posting Permissions

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