B4X:
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?
Like DrawArc and so on.
The above code comes from Clipping a Cirlce to draw a bitmap on and uses JavaObject to 'addCircle'.
Where are references to 'addCircle' and other types of drawing?