Hi guys,
I’m importing runtime svg asset derived from a pdf to show them as pdf pages. I am struggling with tessellation options, since some svg are not shown at all. Here is my tesselationoptions object:
tessellationOptions = new VectorUtils.TessellationOptions();
tessellationOptions.StepDistance = 5f;
tessellationOptions.MaxCordDeviation = 5f;
tessellationOptions.MaxTanAngleDeviation = 5f;
tessellationOptions.SamplingStepSize = 0.5f;
which are the best settings to allow for a correct import?