StipplePattern: number[]

Description of a stipple pattern. This is used with DashedLine to describe a repeating pattern of ON and OFF sections.

For majority of use cases, utilizing preset options is heavily recommended: StipplePatterns.

For example, a traditional Dashed pattern could be described like ON - OFF - repeat.

The stipple pattern is defined as an list of numbers. Each number should be an integer that describes a relative length of that ON or OFF section. The first number of the pattern describes the first ON section, and after that it is alternated.

 // Example stipple pattern
const stipplePattern = [
// ON for 1 length
1,
// OFF for 2 length
2,
// ...
]