Message 1 of 4

Not applicable
07-14-2015
07:02 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello
I am trying to use the inters function. It doesn't seem to work? I click on four points through which I know that there will be a point of intersection. But my variable "tint" in the following code returns 'nil'?
(defun c:tint ()
(setq p1 (getpoint "Click first point"))
(setq p2 (getpoint "Click second point"))
(setq p3 (getpoint "Click third point"))
(setq p4 (getpoint "Click fourth point"))
(setq tint (inters p1 p2 p3 p4))
)
Why is this the case?
Kind regards
Derryck
Solved! Go to Solution.