i am missing some features in the path object in b4x.
in b4a i can use Javaobject to add more options like addarc using the code as described here:
is there a b4x solution for that? i would like to make a jigsaw puzzle but using b4x code.
any ideas how to do that?
in b4a i can use Javaobject to add more options like addarc using the code as described here:
Add Arc to Path
Dim p As Path p.Initialize(0, 0) Dim jo As JavaObject = p Dim x = 100dip, y = 100dip, radius = 100dip As Float jo.RunMethod("addCircle", Array As Object(x, y, radius, "CW")) cvs.ClipPath(p) Where can I find references to obtain more info on Adding different Draws to a Path...
www.b4x.com
is there a b4x solution for that? i would like to make a jigsaw puzzle but using b4x code.
any ideas how to do that?