Fixing various typos

Changing links from http to https
This commit is contained in:
Andreas Deininger
2022-05-31 23:18:45 +02:00
committed by Andreas Deininger
parent ef9740bb38
commit 8e157423e0
24 changed files with 217 additions and 216 deletions

View File

@@ -5,7 +5,7 @@
* @param point
*/
function intersectEllipse(node, rx, ry, point) {
// Formulae from: http://mathworld.wolfram.com/Ellipse-LineIntersection.html
// Formulae from: https://mathworld.wolfram.com/Ellipse-LineIntersection.html
var cx = node.x;
var cy = node.y;

View File

@@ -3,7 +3,7 @@ const intersectRect = (node, point) => {
var y = node.y;
// Rectangle intersection algorithm from:
// http://math.stackexchange.com/questions/108113/find-edge-between-two-boxes
// https://math.stackexchange.com/questions/108113/find-edge-between-two-boxes
var dx = point.x - x;
var dy = point.y - y;
var w = node.width / 2;