Author Topic: Most underated / underused commands / variables ...  (Read 22350 times)

0 Members and 1 Guest are viewing this topic.

MSTG007

  • Gator
  • Posts: 2601
  • I can't remeber what I already asked! I need help!
Most underated / underused commands / variables ...
« Reply #30 on: July 12, 2004, 02:11:20 PM »
align?
Civil3D 2020

yyou

  • Guest
Most underated / underused commands / variables ...
« Reply #31 on: July 12, 2004, 06:38:32 PM »
While in Mtext, click any where on the screen to close dialog box.

M-dub

  • Guest
Most underated / underused commands / variables ...
« Reply #32 on: July 15, 2004, 02:58:06 PM »
mpedit

Dent Cermak

  • Guest
Most underated / underused commands / variables ...
« Reply #33 on: July 15, 2004, 06:23:22 PM »
exit

t-bear

  • Guest
Most underated / underused commands / variables ...
« Reply #34 on: July 15, 2004, 10:23:18 PM »
I don't know how many of you use the chamfer command instead of trim.  Sometimes it's a lot quicker, but many of the folks I've talked with at seminars etc... never thought of it.

M-dub

  • Guest
Most underated / underused commands / variables ...
« Reply #35 on: July 15, 2004, 10:27:00 PM »
Quote from: Dent Cermak
exit


That's my favourite one of all time!

Keith™

  • Villiage Idiot
  • Seagull
  • Posts: 16899
  • Superior Stupidity at its best
Most underated / underused commands / variables ...
« Reply #36 on: July 15, 2004, 10:35:13 PM »
QUIT... my favorite...
Proud provider of opinion and arrogance since November 22, 2003 at 09:35:31 am
CadJockey Militia Field Marshal

Find me on https://parler.com @kblackie

daron

  • Guest
Most underated / underused commands / variables ...
« Reply #37 on: July 16, 2004, 08:46:46 AM »
polar ILO ortho

[opinionated moment]Who in their right mind would continue using ortho, when polar is so much more flexible. Everybody I work with or have worked with uses ortho still, even when I've shown them how much better it can be.[/opinionated moment]

Does anybody here not use polar, even if you still use ortho for any reason?

More unused commands:
From
Temporary tracking
parallel
tracking <-obsolete
extension
apparent intersection

Kate M

  • Guest
Most underated / underused commands / variables ...
« Reply #38 on: July 16, 2004, 09:29:17 AM »
Quote from: t-bear
I don't know how many of you use the chamfer command instead of trim.  Sometimes it's a lot quicker, but many of the folks I've talked with at seminars etc... never thought of it.

I use a zerio-radius fillet..it's got a shorter alias. :-)

Keith™

  • Villiage Idiot
  • Seagull
  • Posts: 16899
  • Superior Stupidity at its best
Most underated / underused commands / variables ...
« Reply #39 on: July 16, 2004, 10:09:06 AM »
I use ortho regularly ... aint got that polar tracking thing figgurd out yet
Proud provider of opinion and arrogance since November 22, 2003 at 09:35:31 am
CadJockey Militia Field Marshal

Find me on https://parler.com @kblackie

M-dub

  • Guest
Most underated / underused commands / variables ...
« Reply #40 on: July 16, 2004, 10:38:50 AM »
Me neither...
Ortho will do for now, but plan to 'someday' figure out what tracking actually does and how to work it.

PDJ

  • Guest
Most underated / underused commands / variables ...
« Reply #41 on: July 16, 2004, 02:24:34 PM »
Gotta agree with Kate.. Mine is called f0 as in fillet with a 0 radius..

Code: [Select]
(defun C:F0()
  (command "FILLET" "R" "0" "FILLET")
)


I also like my xt routine that allows you to extend a line(s) to a temporary line that disappears when the routine is done..

Code: [Select]
(defun c:xt (/ p1 p2 e1 e2 d1)
  (prompt "\nDraw line to extend to: ")
  (setq p1 (getpoint))
  (setq p2 (getpoint p1))
  (command nil nil nil "POINT" "@")
  (setq e1 (entlast))
  (entdel e1)
  (command "LINE" p1 p2 "")
  (setq e2 (entnext e1))
   (while
    (setq d1 (entsel "\nSelect object to extend: "))
    (command "EXTEND" e2 "" d1 "")
   );while
  (entdel e2)
 (princ)
)

VerticalMojo

  • Guest
Most underated / underused commands / variables ...
« Reply #42 on: July 21, 2004, 12:20:24 PM »
DSVIEWER

SMadsen

  • Guest
Most underated / underused commands / variables ...
« Reply #43 on: July 21, 2004, 01:10:32 PM »
Quote from: Daron
apparent intersection

Hear hear, Daron

favorite 3D osnap: APP
favorite 3D view change: 3DOrbit
favorite 3D edit tool: Align

favorite 2D tool: pen and paper?

daron

  • Guest
Most underated / underused commands / variables ...
« Reply #44 on: July 22, 2004, 08:47:44 AM »
Quote from: SMadsen
Quote from: Daron
apparent intersection

Hear hear, Daron

favorite 3D osnap: APP
favorite 3D view change: 3DOrbit
favorite 3D edit tool: Align

favorite 2D tool: pen and paper?


Beautiful. :LOL

For the rest of you ORTHO-heads. Don't want to sound opinionated, but what's to figure out? Polar is just like ortho, but you can set it to different angles. I set the polarangle increment to 15 so I can draw 30, 45 and 60 degrees as well as the traditional ortho angles, plus the advantage polar has over ortho is the ability to move away from ortho without having to turn it off. As soon as polar came out I've been using it. It boggles my mind that I feel that I'm the only one who uses it. I'm sure that's not the case, but I haven't met anyone yet who uses polar. Anybody? As far as using the temporary tracking points, set them to shift to select and figure them out. For those using LT, I feel for you. They have polar, but not tracking of any sort except FROM and that's not even done right.