Author Topic: Convert Text To Coordinate List  (Read 1456 times)

0 Members and 1 Guest are viewing this topic.

udaaf

  • Guest
Convert Text To Coordinate List
« on: May 16, 2013, 10:58:26 PM »
How to convert text containing "(0.0 0.0 0.0)"  to  (0.0 0.0 0.0)

owenwengerd

  • Bull Frog
  • Posts: 451
Re: Convert Text To Coordinate List
« Reply #1 on: May 16, 2013, 11:20:33 PM »
Code - Auto/Visual Lisp: [Select]
  1. (read "(0.0 0.0 0.0)")
=> (0.0 0.0 0.0)

udaaf

  • Guest
Re: Convert Text To Coordinate List
« Reply #2 on: May 16, 2013, 11:39:39 PM »
@owenwengerd

Thanks for you're reply, it's done  :-).