TheSwamp

Code Red => AutoLISP (Vanilla / Visual) => Topic started by: curmudgeon on March 08, 2019, 09:32:25 PM

Title: what does a 48 dxf code mean in an arc entity
Post by: curmudgeon on March 08, 2019, 09:32:25 PM
(setq dr (entget (car (entsel))))
yields
((-1 . <Entity name: 1a70d20>) (0 . "ARC")(330 . <Entity name: 19f9c10>)(5 . "B0DC")
  (100 . "AcDbEntity") (67 . 0)(410 . "Model")(8 . "A-DOOR")
  (48 . 432.0)
  (100 . "AcDbCircle") (10 -4747.88 4580.25 0.0) (40 . 35.9856)
  (210 0.0 0.0 -1.0)
  (100 . "AcDbArc") (50 . 3.14159)ze  (51 . 4.71239)
)

(48 . 432.0) ???


Title: Re: what does a 48 dxf code mean in an arc entity
Post by: kdub_nz on March 08, 2019, 10:41:15 PM
Under Common Group Codes for Entities

48 is Linetype scale (optional)
Title: Re: what does a 48 dxf code mean in an arc entity
Post by: MP on March 08, 2019, 10:43:03 PM
linetype scale

blink: didn’t see kdub’s post
Title: Re: what does a 48 dxf code mean in an arc entity
Post by: curmudgeon on March 09, 2019, 09:36:01 AM
thankyouverymuch.