Hi, I just saw that in the AreaStyle.CreateHatchStyle the OutlinePenWidth is an integer instead of a float.
When creating a GeoPen for an Outline, the width is a float however.
Is this an oversight?
Thanks!
var areaStyle = AreaStyle.CreateHatchStyle(
hatchStyle,
GeoColors.White,
fillColor,
outlineColor,
(int)OutlineWidth, <-- int
LineDashStyle.Solid,
0f,
0f);
new GeoPen(outlineColor, OutlineWidth) <-- float
