← Inbox

C3D-LN508 · Draw line from pt 508: S83°36'43"E 75.23' proposed

Line on layer PARCEL from COGO 508 (E2166393.496,N1330090.878) to E2166468.259,N1330082.507. C3D-23.

Script file
C3D-LN508.cs
Target
260619 - 3625 Stonewall Tell Rd.dwg · model space
Author
claude
Approved
no
Timeout
60s

C# payload

// Draw line from COGO pt 508 with call S 83°36'43" E, 75.23'.
// Start = 508 (E2166393.496, N1330090.878). Endpoint computed from the call.
// AutoCAD X=Easting, Y=Northing.
using Autodesk.AutoCAD.Geometry;

var start = new Point3d(2166393.496, 1330090.878, 0);
var end   = new Point3d(2166468.259, 1330082.507, 0);

EnsureLayer("PARCEL", 7);
var id = AddLine(start, end, "PARCEL");
Log($"Drew line on PARCEL from (508) {start.X:0.000},{start.Y:0.000} to {end.X:0.000},{end.Y:0.000}. handle {id.Handle}");

Notes

What worked, what didn't, job-specific gotchas — flagged notes feed the recipes.

No notes yet.