# VectorUtils.TessellationOptions

> Structure to store the tessellation options.

## Definition

* **Type:** Struct
* **Namespace:** [Unity.VectorGraphics](/engine/6000.5/script-reference/unity/vectorgraphics.md)
* **Assembly:** UnityEngine.VectorGraphicsModule

```csharp
public struct VectorUtils.TessellationOptions
```

## Properties

| Property                                                                                                                             | Description                                                                                                                                                      |
| ------------------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [MaxCordDeviation](/engine/6000.5/script-reference/unity/vectorgraphics/vectorutils/tessellationoptions/maxcorddeviation.md)         | The maximum distance on the cord to a straight line between to points after which more tessellation will be generated. To disable, specify float.MaxValue.       |
| [MaxTanAngleDeviation](/engine/6000.5/script-reference/unity/vectorgraphics/vectorutils/tessellationoptions/maxtanangledeviation.md) | The maximum angle (in degrees) between the curve tangent and the next point after which more tessellation will be generated. To disable, specify float.MaxValue. |
| [SamplingStepSize](/engine/6000.5/script-reference/unity/vectorgraphics/vectorutils/tessellationoptions/samplingstepsize.md)         | The number of samples used internally to evaluate the curves. More samples = higher quality. Should be between 0 and 1 (inclusive).                              |
| [StepDistance](/engine/6000.5/script-reference/unity/vectorgraphics/vectorutils/tessellationoptions/stepdistance.md)                 | The uniform tessellation step distance.                                                                                                                          |
