I designed a paint app in android studio for freehand drawing. I wonder if there is a way make 'path.quadto(p1,P2)' in delphi 10.4 pr xe8. the problem is there are too many, but none of them give the same result on android.
'path.curveto(p1,p2,p3);'
'path.smoothcurveto(p2,p3);'
'Path.quadcurveto(p2,p3);'
If two points have distance greater than the tolerance then I use 'path.quadto' in java, but I can't do that in firemonkey. It always draws lines.