- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have a list of points "extPolyEndpointList":
((4950.0 8910.0) (4950.0 6930.0) (2970.0 4950.0) (2970.0 1980.0) (990.0 6930.0) (990.0 7485.36) (5445.0 7425.0) (5423.79 5423.79) (5940.0 -4950.0) (5940.0 -8910.0) (1980.0 -6930.0) (1980.0 -8910.0) )
I have a point "extPolyConnStart ":
(990.0 7485.36)
I tried using the command: (member extPolyConnStart extPolyEndpointList)
but it keeps returning nil. I can clearly see that it's the 6th item in the list.
Am I not doing the command right?
I get the point using this command:
(setq extPolyConnStart (cdr (assoc 10 extPolyConnEnt))) --->(10 990.0 7485.36)
I have tried so many variations:
(member 'extPolyConnStart extPolyEndpointList)
(member '(extPolyConnStart) extPolyEndpointList)
(member (list extPolyConnStart) extPolyEndpointList)
I hope someone can let me know how I need to set this up so that it does recognize the point as part of the list.
Thanks
Solved! Go to Solution.