Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/18/2019 in all areas

  1. Honestly, I've never used the viewcube for anything. In fact, I have it disabled so I don't even see it. When I need to orbit around a model I would select a part of it and then hold down Shift and middle mouse to orbit around. When you select an item, it isolates it during orbit so that's probably why it works better without freezing up to calculate all the other various parts of the model.
    1 point
  2. Looking at image a "\\p" on end would make table look better.
    1 point
  3. (apply 'strcat (mapcar '(lambda ( x ) (strcat "\\P" (rtos x 2 3))) lst)) Or, without the leading "\\P": (apply 'strcat (cons (car lst) (mapcar '(lambda ( x ) (strcat "\\P" (rtos x 2 3))) (cdr lst)))
    1 point
  4. Another with 3 decimal numbers with another method. (setq str "") (foreach prt '(2.02512 7.5831 2.03903 7.58318) (setq str (strcat str "\\P" (rtos prt 2 3))) )
    1 point
  5. Hi, Try this untested codes. (foreach prt '(2.02512 7.5831 2.03903 7.58318) (setq lst (cons (strcat "\\P" (vl-princ-to-string prt)) lst)) ) (setq out (apply 'strcat (reverse lst)))
    1 point
×
×
  • Create New...