Jump to content

variable value in getdist function


4o4osan

Recommended Posts

Hi Chavdar,

if you mean the interval value in the prompt, perhaps something like this

 

(setq interval 5) 
(setq dist (getdist (strcat "\nEnter Interval < " (itoa interval)" >:")))

 

 

EDIT: If your goal is to force the user to enter a number divisible by 5, maybe something like this

(setq interval 5)
(while (not
        (progn
          (initget 7)
          (setq dist (getreal (strcat "\nEnter Interval < " (itoa interval) " >:")))
          (= (fix (/ dist 5)) (/ dist 5))
        )
      )
)

 

 

Henrique

Edited by hmsilva
Link to comment
Share on other sites

  • 7 months later...

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...