Hello,
In our application, we are using NTriangulatedSurfaceSeries to form a surface. We need to have small lines on top of the NTriangulatedSurfaceSeries surface.
Please find the attached image.
When the SurfaceMode property of the used NTriangulatedSurfaceSeries is set to Mesh, we could see some lines on the surface. But they look very big. There are different options like solid lines, dashed & dotted lines options for the mesh lines. We could not find any option on controlling the distance between the lines.
We tried other options like HatchStyle.SmallGrid etc to control the distance between the lines of the mesh. But it doesn't fit our requirement.
Is there any other way to control the Mesh lines on the surface. Request you to provide an example.
Thank you in advance.
Best regards
Vishal
Best Regards,Nevron Support Team
Is there any way to control the width and distance between the lines on HatchFillstyle's , TextureMappingStyle .
I am using the following code to achive desired lines on the surface.
====================================================================================================
NTriangulatedSurfaceSeries layer = new NTriangulatedSurfaceSeries();
..
layer.FrameMode =
pileFillTextureMapping.MapMode =
pileFillTextureMapping.HorizontalScale = 0.05f;
pileFillTextureMapping.VerticalScale = 0.05f;
pileFillTextureMapping.MapLayout =
pileFillStyle.TextureMappingStyle = pileFillTextureMapping;
layer.FillStyle = pileFillStyle;
======================================================================================
This behaviour is some what Okay with us. I could see some difference when I applied the HorizantalScale & VerticalScale. But not able to understand which one is this controlling( Distance / Width /Both).
I am not able to control the distance between the lines and the width of the lines as desired.
Is there any way to control the distance between the the grid lines and the width of the grid lines.?
If this can be done, it will really improve our visualization much better.
Please let me know the possibilties. Thank you.