ArcGIS Pro 3.3
ArcGIS Pro SDK 3.3.0.52636
I use this in various tools and all are failing when applying a negative value to the offset distance.
The error for the left side is "GeometryException: An internal error has occurred in the geometry system."
double righttest = 25;
double lefttest = -25;
// This works
Polyline right = GeometryEngine.Instance.Offset(existgeom, righttest, OffsetType.Round, 0) as Polyline;
// This fails when using a negative value
Polyline left = GeometryEngine.Instance.Offset(existgeom, lefttest, OffsetType.Round, 0.5) as Polyline;
Worked at 3.2 with out issue.