Message 1 of 4
I have a line and a circle I want to get the intersection of both
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have defined into my code a line and a circle
How do I get the intersection between those 2?
I have the following code but in VS 2010 is telling me this:
'Public Sub IntersectWith(entityPointer As Autodesk.AutoCAD.DatabaseServices.Entity, intersectType As Autodesk.AutoCAD.DatabaseServices.Intersect, points As Autodesk.AutoCAD.Geometry.Point3dCollection, thisGraphicSystemMarker As Long, otherGraphicSystemMarker As Long)' is obsolete: 'Use the overload taking IntPtr instead.'.
Dim Point11 AsNewPoint3dCollection
Line1.IntersectWith(circle1,Intersect.OnBothOperands, Point11, 0, 0)
It is working but when I will switch to Autocad 2013 I have to use a different method to get the intersection?
Thanks
