Does the .NET runtime for .NET have any geometry transformation capabilities? I'm looking to rotate, scale, transform my points, lines, polygons (any geometry) and can't seem to find anything in the documentation.
Thanks,
Joe
Solved! Go to Solution.
The editor can do this interactively, but there's no built-in functionality to do this programmatically. You'd have to use the geometry builder to modify the geometry vertex by vertex with a little trigonometry.
The editor can do this interactively, but there's no built-in functionality to do this programmatically. You'd have to use the geometry builder to modify the geometry vertex by vertex with a little trigonometry.
Thanks Morten. I'll look into the geometry builder.