- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
Hope somebody could help me.
I have some closed plines. Each pline vertex has an associated id text. This text has an insertion point "coincident" with the pline vertex, except they may differ in the 4th decimal.
I want to get the text associated with each vertex with the following:
(defun findTextWithInsertionPoint (pt )
(ssget "_X" (list (cons 0 "TEXT")(cons 10 pt) ))
)
But it doesn´t work because coordinates differ in the 4th decimal or less.
Is there a system variable or something else that specifies a fuzz factor, so that points are considered same if they differ less than fuzz factor?
For example: (equal expr1 expr2 [fuzz]) would consider expr1 and expr2 the same if they differ up to fuzz value.
Solved! Go to Solution.