Author Topic: Node size  (Read 2670 times)

0 Members and 1 Guest are viewing this topic.

VerticalMojo

  • Guest
Node size
« on: May 11, 2005, 11:55:10 AM »
I cant believe I forgot this variable.......

VerticalMojo

  • Guest
Node size
« Reply #1 on: May 11, 2005, 12:07:12 PM »
PDMODE

now how do I make the nodes circular?

MP

  • Seagull
  • Posts: 17750
  • Have thousands of dwgs to process? Contact me.
Node size
« Reply #2 on: May 11, 2005, 12:10:00 PM »
Massage with hot oil.

But seriously, try playing with ddptype.
Engineering Technologist • CAD Automation Practitioner
Automation ▸ Design ▸ Drafting ▸ Document Control ▸ Client
cadanalyst@gmail.comhttp://cadanalyst.slack.comhttp://linkedin.com/in/cadanalyst

ronjonp

  • Needs a day job
  • Posts: 7531
Node size
« Reply #3 on: May 11, 2005, 12:10:21 PM »
(setvar 'pdmode 33) ?

Windows 11 x64 - AutoCAD /C3D 2023

Custom Build PC

VerticalMojo

  • Guest
Node size
« Reply #4 on: May 11, 2005, 12:11:04 PM »
Heres a Macro I found....

^C^Cpdmode;35;pdsize;3;divide

MP

  • Seagull
  • Posts: 17750
  • Have thousands of dwgs to process? Contact me.
Node size
« Reply #5 on: May 11, 2005, 12:22:05 PM »
No matter what pdmode setting you have, this will ensure it only draws circles:

Code: [Select]
(defun RoundNodes ( )
    (setvar "pdmode"
        (logand (~ 64)
            (logior 32
                (getvar "pdmode")
            )
        )
    )    
)

That is, if you had for example a setting of 66, a crosshair and a square, it would be changed to a crosshair and a circle (34).

:)
Engineering Technologist • CAD Automation Practitioner
Automation ▸ Design ▸ Drafting ▸ Document Control ▸ Client
cadanalyst@gmail.comhttp://cadanalyst.slack.comhttp://linkedin.com/in/cadanalyst

SPDCad

  • Bull Frog
  • Posts: 453
Node size
« Reply #6 on: May 11, 2005, 01:14:39 PM »
'PSSize' controls the size of the node, with negative numbers being a % ov display area.

PDMode controls the node style.
33 is a circle with a dot in the centre
34 is just a circle
35 is a circle with 'X' crosshairs
AutoCAD 2010, w/ OpenDCL

visit: http://reachme.at/spd_designs

MP

  • Seagull
  • Posts: 17750
  • Have thousands of dwgs to process? Contact me.
Node size
« Reply #7 on: May 11, 2005, 01:17:41 PM »
Quote from: SPDCad
33 is a circle with a dot in the centre
34 is just a circle
35 is a circle with 'X' crosshairs

Might wish to revisit those values.

:)
Engineering Technologist • CAD Automation Practitioner
Automation ▸ Design ▸ Drafting ▸ Document Control ▸ Client
cadanalyst@gmail.comhttp://cadanalyst.slack.comhttp://linkedin.com/in/cadanalyst

Crank

  • Water Moccasin
  • Posts: 1503
Node size
« Reply #8 on: May 11, 2005, 01:32:35 PM »
Don't know if it's also a LT-command, but you can try _ddptype .
Vault Professional 2023     +     AEC Collection