Author Topic: Few strange settings in my cad come up lately  (Read 1743 times)

0 Members and 1 Guest are viewing this topic.

Coder

  • Swamp Rat
  • Posts: 827
Few strange settings in my cad come up lately
« on: July 13, 2011, 02:27:29 PM »
Hello everyone .

I do not know what happened lately with my Cad !

Fits when I try to make Mtext , I receive this text while trying to locate the two points for the Mtext .
Code: [Select]
0215x248°

Second when I trying to draw lines I also receive the angular setting like this .

Code: [Select]
N 45d0'0" E

Any idea ?

many thanks

alanjt

  • Needs a day job
  • Posts: 5352
  • Standby for witty remark...
Re: Few strange settings in my cad come up lately
« Reply #1 on: July 13, 2011, 02:52:11 PM »
check your UNITS.
Civil 3D 2019 ~ Windohz 7 64bit
Dropbox

Coder

  • Swamp Rat
  • Posts: 827
Re: Few strange settings in my cad come up lately
« Reply #2 on: July 13, 2011, 02:55:30 PM »
check your UNITS.

Thank you Alanjt , that solved the second issue .  :-)

What do you think about the first one ?

kruuger

  • Swamp Rat
  • Posts: 637
Re: Few strange settings in my cad come up lately
« Reply #3 on: July 15, 2011, 09:35:29 AM »
i think MTJIGSTRING :) (max 10 letters or numbers)
kruuger

EDIT: try this ;)
Code: [Select]
(defun c:TEST (/ S)
  (setq S "")
  (foreach % '(84 104 101 83 119 97 109 112 59 41)
    (setq S (strcat S (chr %)))
  )
  (setvar 'MTJIGSTRING S)
  (command "_MTEXT")
  (princ)
)
« Last Edit: July 15, 2011, 09:52:43 AM by kruuger »

Coder

  • Swamp Rat
  • Posts: 827
Re: Few strange settings in my cad come up lately
« Reply #4 on: July 15, 2011, 11:49:37 AM »
i think MTJIGSTRING :) (max 10 letters or numbers)
kruuger

EDIT: try this ;)
Code: [Select]
(defun c:TEST (/ S)
  (setq S "")
  (foreach % '(84 104 101 83 119 97 109 112 59 41)
    (setq S (strcat S (chr %)))
  )
  (setvar 'MTJIGSTRING S)
  (command "_MTEXT")
  (princ)
)

Fantastic . :lol:

Thank you so much .