Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: Polar Tracking

  1. #1
    Active Member jdcincy's Avatar
    Join Date
    2005-01
    Location
    Cincinnati, Ohio
    Posts
    94

    Default Polar Tracking

    Is there any way to save polar tracking settings? (additional angles)

    I have several jobs that have different angles and at the moment I have to set the tracking every time i go from one job to the other. Any thoughts.
    John
    Cincinnati, OH

  2. #2
    100 Club heinsite's Avatar
    Join Date
    2005-11
    Location
    Kona, Hawaii
    Posts
    137

    Default Re: Polar Tracking

    Create a file with the special angle settings you need and save it as a template. Then start your new drawings with that template. The angles will be waiting for you.

    Dave.

  3. #3
    Active Member jdcincy's Avatar
    Join Date
    2005-01
    Location
    Cincinnati, Ohio
    Posts
    94

    Default Re: Polar Tracking

    Alright,,,Thats a good Ideal. I didnt know a .dwt would save the settings.

    If I were king for the day. Additional angle settings would be saved to the drawing.
    John
    Cincinnati, OH

  4. #4
    Active Member jdcincy's Avatar
    Join Date
    2005-01
    Location
    Cincinnati, Ohio
    Posts
    94

    Default Re: Polar Tracking

    awwww,,, I created additional angles to polar tracking and save it as a template (.dwt). I deleted the settings and tried to go back to the template and they were gone.

    Anyone have any other ideals?
    John
    Cincinnati, OH

  5. #5
    Active Member jdcincy's Avatar
    Join Date
    2005-01
    Location
    Cincinnati, Ohio
    Posts
    94

    Default Re: Polar Tracking

    Dave,

    Do you have templates made special just for Polar Tracking w/different angle settings? If you do, what do you think I could be doing wrong. I cant get them to save to the template.


    Quote Originally Posted by heinsite View Post
    Create a file with the special angle settings you need and save it as a template. Then start your new drawings with that template. The angles will be waiting for you.

    Dave.
    John
    Cincinnati, OH

  6. #6
    Certifiable AUGI Addict cadtag's Avatar
    Join Date
    2000-12
    Location
    Cairo - no, not Illinois
    Posts
    2,729

    Default Re: Polar Tracking

    It looks like all the POLAR* variables are stored in the registry, not the DWG. So changes made in a DWT are not saved with the DWT. Simples thing would probably be tocreate a set of macros or LISP commands that set the angles and modes you need:

    (defun c:P12 ()
    (setvar "POLARMODE" 4);;or use 5, 6 or 7 as value
    (setvar "polaraddang "12; 33; 83")
    ())
    Officially Awesome
    Real pirates wear silk suits & ties, and write EULAs
    The only thing more dangerous to the liberty of a free people than big government, is big business.

  7. #7
    Active Member jdcincy's Avatar
    Join Date
    2005-01
    Location
    Cincinnati, Ohio
    Posts
    94

    Default Re: Polar Tracking

    Thank you Cadtag for the info and start on the lisp. You the man!!
    John
    Cincinnati, OH

  8. #8
    100 Club heinsite's Avatar
    Join Date
    2005-11
    Location
    Kona, Hawaii
    Posts
    137

    Default Re: Polar Tracking

    Quote Originally Posted by cadtag View Post
    It looks like all the POLAR* variables are stored in the registry, not the DWG. So changes made in a DWT are not saved with the DWT. Simples thing would probably be tocreate a set of macros or LISP commands that set the angles and modes you need:

    (defun c:P12 ()
    (setvar "POLARMODE" 4);;or use 5, 6 or 7 as value
    (setvar "polaraddang "12; 33; 83")
    ())
    I stand corrected. POLARADDANG is the system variable that stores the extra angles... and they do reside in the registry.

    Dave.

  9. #9
    Active Member jdcincy's Avatar
    Join Date
    2005-01
    Location
    Cincinnati, Ohio
    Posts
    94

    Default Re: Polar Tracking

    Thanks guys,, I was able to get the lisp to work perfectly. Now all I have to do is type a simple command and the additional angles are added.

    Would either of you know what the lisp would look like to delete the additional angles.
    John
    Cincinnati, OH

  10. #10
    Certifiable AUGI Addict cadtag's Avatar
    Join Date
    2000-12
    Location
    Cairo - no, not Illinois
    Posts
    2,729

    Default Re: Polar Tracking

    (setvar "polaraddang" "") will set it back to an empty string,
    Officially Awesome
    Real pirates wear silk suits & ties, and write EULAs
    The only thing more dangerous to the liberty of a free people than big government, is big business.

Page 1 of 2 12 LastLast

Similar Threads

  1. Polar Tracking...wha ?
    By iridium77 in forum AutoCAD 3D (2007 and above)
    Replies: 1
    Last Post: 2010-05-14, 02:47 PM
  2. Polar tracking 2010
    By Sargent Fury in forum AutoCAD General
    Replies: 3
    Last Post: 2009-09-02, 12:47 PM
  3. Polar Tracking misbehaving
    By kane333 in forum AutoCAD General
    Replies: 3
    Last Post: 2009-03-24, 05:07 PM
  4. polar tracking
    By hausmeister25 in forum ACA General
    Replies: 2
    Last Post: 2007-03-12, 10:28 AM
  5. Polar Tracking in 2006LT
    By lazer2go in forum AutoCAD LT - General
    Replies: 6
    Last Post: 2005-06-23, 11:41 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
  •