Message 1 of 26
getting a text entity at a point
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Is there any way using 'ssget' that I can get a text entity at a non-specific point? Like:
(ssget "X" '((0 . "TEXT")(11 318.03737793 9.13950144 0.0)))
Or will I have to retrieve all texts in the drawing, and do a compare? Like this:
(and (= (cdr (assoc 0 ent1)) "TEXT") (equal (cdr (assoc 11 ent1)) '(318.03737793 9.13950144 0.0) 1e-8))