I am creating Custom shapes in kinteicjs, with parameters provided at run time.
This shape will include an arc segment. I assume I have to use the arcTo() method to draw this segment, not the arc() method (please correct me if I am wrong).
Finding the correct parameters for the arcTo() method is hell in my opinion. Question: are there libraries / custom js code available somewhere that can be used as an alternative to draw arcs?
If you find this link via a Google search:
As I suspected in the question, the arcTo method is not necessary to draw a shape. Just use the arc() method, which has intuitive parameters, to draw arcs and just drop this weird arcTo() stuff.