works fine, however when I try to set the texture mapping scale, there is no effect. Here is the code
NHatchFillStyle hatchStyle = new NHatchFillStyle(HatchStyle.HorizontalBrick, Color.White, Color.Black);NTextureMappingStyle mappingStyle = new NTextureMappingStyle();mappingStyle.MapMode = MapMode.RelativeToViewer;
mappingStyle.MapLayout = MapLayout.Tiled;
mappingStyle.HorizontalScale = 10.0f;
mappingStyle.VerticalScale = 10.0f;
hatchStyle.TextureMappingStyle = mappingStyle;
NStyle.SetFillStyle(myShape, hatchStyle);
It shows no effect on applying the scale