Jump to content

beginner question


Lt Dan's legs

Recommended Posts

I guess I'll just use (setvar "polarang" 90) and be done with it. I'd still like to know how to turn on polar though

Link to comment
Share on other sites

ORTHOMODE Toggle:

 

(setvar 'ORTHOMODE (- 1 (getvar 'ORTHOMODE)))

POLAR Tracking Toggle:

 

(setvar 'AUTOSNAP (boole 6 (getvar 'AUTOSNAP) )

 

Perhaps more useful:

 

;; flag:  1 = ON, 0 = OFF

(defun LM:PolarTrack ( flag )
 (setvar 'AUTOSNAP (boole (+ 2 (* flag 5)) (getvar 'AUTOSNAP) )
)

Link to comment
Share on other sites

I guess I'll just use (setvar "polarang" 90) and be done with it. I'd still like to know how to turn on polar though

 

(setvar 'polarang 90) = Polar Ang set to 116.62 degrees

 

Better:

 

(setvar 'polarang (/ pi 2.))

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...