using Mapbox.Unity.Map; namespace Mapbox.Unity.SourceLayers { public interface ISubLayerLineGeometryOptions { /// /// Sets the width of the mesh generated for line features. /// /// Width of the mesh generated for line features. void SetLineWidth(float width); void SetJoinType(LineJoinType join); void SetCapType(LineCapType cap); } }