.NET
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Add a line to .dwg
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
81 Views, 1 Replies
08-24-2005 05:30 PM
I have been working on this program that is supposed to add a line to a .dwg. I am having trouble creating the line object. Attached is the source code if anyone wishes to look at it.
Thank you
Thank you
*Mike Tuersley
Re: Add a line to .dwg
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
08-24-2005 08:09 PM in reply to:
sepich4567
For starters, a line requires 2 2D points and your passing it an array of 3
points:
Public Sub New(ByVal point1 As Autodesk.AutoCAD.Geometry.Point2d, ByVal
point2 As Autodesk.AutoCAD.Geometry.Point2d)
-- Mike
___________________________
Mike Tuersley
___________________________
the trick is to realize that there is no spoon...
points:
Public Sub New(ByVal point1 As Autodesk.AutoCAD.Geometry.Point2d, ByVal
point2 As Autodesk.AutoCAD.Geometry.Point2d)
-- Mike
___________________________
Mike Tuersley
___________________________
the trick is to realize that there is no spoon...

