Message 1 of 6
Entities not created at the coordinates I specify
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm having an issue of my entities not being created at the coordinates I specify in code. For example, if I create a circle entity (see code below) with a center point of 0,0,0 it is not created there, but at a coordinate of -347,-1957,0. Does anybody have any idea what might be going on here? Any help would be greatly appreciated. Thanks...
Dim center() As Double = {0.0, 0.0, 0.0} Dim circleObj As AcadCircle = doc.ModelSpace.AddCircle(center, 1.0)