Does path.contains() work properly? I am having issues with it.
-
I have a path here and I am trying to detect the mouse events inside the bounds of the path with path.contains():
UpArrowPanel.setMouseCallback(function(event) { var inBounds = arrowPath.contains([event.x, event.y]); // Handle hover state if (event.hover) inBounds ? isHovered = true : isHovered = false; etc..
But the detection I am getting is clearly off from the actual path:
Here is a snippet of the arrow path with paint routine and mouse callback:
HiseSnippet 1459.3ocsW0uaaaCDmJMpa1acaEXO.D4ujaxbscSZRVvPa9bMXMoF0oECnnnflhxhnxjBjzw0qnOY6kZuAaGojrk+HNoFXFvIl2we2c7ti2crsRRYZsTg7pd0nTFx6686LRXhONlvEnyOA48C9WPzFlBmQ5nQoDslEh77t2uaI3UYcj6y+7riHIDAkMgDB8VImxdIuO2LgZ6m+G7jjyHgrq38Ks6se94To3XYhb.XO2yuAJkP+HoG6Rhcaq4idAQGi7djOkt89r8hZsaiV6y1Ib6tsZ1fzpw96uKirSCZ28YjVQcoMPd2+zPtQp5XHFlFD5QxvQchkCEYJ3sbMuaBytnIpCn4Lxnii4IgsKbNZDxa81SbU2KyU8y9WvC4ioOwk8SNF3IHJ6z7VaYlTyuBSxqjIsdlI8P+NTEO0Lgi0d9N+yEPDLh.wlxlR1dQq82U7OVB6PXp2m7Q1YJXwXDAMa0XKL7mZGTsJDezF7aROTojCaSDrD7ugKvRBCcjB1n7F1XK71MreA7koWWyLAaLjGZh23FYGy38hM2LeRRhb3wve6BYJZXeabXRBdBgI1LwhrCkjv.Kt4A3G+Xb1J3LBQCbD7Uwz7+hK5gMwrL.kA2lXhKcZoJFD.sDCrZ4ZhBy0uPdMSwBgsEQRzrCxI2FjrtL4pbQBW.JeffZ3RANSZGVnmfZU+bUL7YrlqSSXDkSUV5IRv3wZ6YoE9QkNctS1UJNQzCNbN2aI.FKfcWBfLGdIDCADOcd.ulQMKVEw2fMMAQtNbX.FuJJBhkNednhLz5+6NBGzDR5p4BKTlMWzRmHBwFINUwtFngoI7zTfdIsS+jU86f2DhwkIOpD4BEC2.UPrETcwo2vSmwqqs64R1vNC55hKzOskUX+B3IeLtUsCJj0KYQkjCKrGaFAYC2WIA7.VsEqSNatP4n4gLrLBxGycYKQVCuYYcjzXj8wIVQtpRC9e7bRTYie2MQt4sIxW6j0c+Du4xNwYB6tEF1bYggifpG1Ls4SHnIRMqHa..7En.yr2cgTrYKU0F5MXdsbfAzePws9fdEWy6UOBZIB0tBxZ+oqOLlaX4Fz3DV3ZBE3qvcI1xIPcCssKhiOOBGLtRSMGoLICZOSnikcOEiIxkMCpGkiMu30shcTInKcu4mgrBLDgNknrWasG0oNWmADlTyEmRxKnj4Ub9zwAfsvuyVYXK7S1apZLyQ380lbS+DnthSAP.vlAT8lr3tIPfO+30qtsbzppcXW0s8r9xhxFtPNPyJ5RMIcvUUqHkv04PbjbfHzVluTFHz.BxlzAuys+5PEoreL58yju7BndosdqMtNSlRFBGmZUqTYrhd1TMwLpAL7utn9ZynBnRLbgYQpvwoHo5yiSWbYb4JcRBmiSotkV8mcj9xzIqYxtu0M9lzEJ64uILqvyOIikdkohRJVp8JaPdHbbiZo3Rog8JgqCcE35OdVVQQKjmctAkLIgoVHa6nvpkALPLneWlZKHwHY.a7FgQ+lddx6e2lmjlMFSoMJEmK3lWkxxWelLIzNmn82yO8IJeNH3Wu47SHFhcfzbZv9RYJC2ZNdmvtFdBP13oU7Ogo+nQl51a+TovJAuuw339fhgWsA.DOz91ixwDzmPd9dAfFGU7C2vGfbueP96MxlsnLkoGQD48i9SMhH7bj4lhFleWFNHgXldnd6ycxY.Qlolj1NsrPyMiJ+bnuhI8arzI8uql3C8ayMz3Eaiqs.aDhY+eXi4uO5A9mFEAMzmXfq6e1etpOF5VTeVu0dWPft+17jKGzuCTRmx.sKfjGsMkYMada15F10VOPGlHzs3egO4LaZW6kyrYASTeBUI+.M69n8EXeqiBXSB2KTq.OUFViahb2QK6m6COH7CT5zhZNfsVUfOYUAt8pBbmUE3SWUf6tp.261AZeu9gCfYayt1fPWz9TWQMOuSEDHCzksh9O.EyG8cB
-
@VirtualVirgin Because this is your actual arrow, the one that is used for the
contains
methodas you can see when drawing it's real original size with:
g.fillPath(arrowPath, arrowPath.getBounds(1.0));
So when you draw it to another area (or scale), it won't change the fact that the original path boundaries are used.
So if you want to draw it to another scale, it's in fact the original path that you have to scale, not it's drawing. The
scaleToFit
function should do what you want -
@ustk Oh that makes sense! And that method is a lot easier than what I was doing.