2018-07-23 11:12:06 +00:00
|
|
|
import point from './point'
|
2018-07-14 16:04:39 +00:00
|
|
|
|
2018-07-23 11:12:06 +00:00
|
|
|
/** Returns internal hook name for a macro */
|
|
|
|
export function macroName (name)
|
|
|
|
{
|
|
|
|
return `_macro_${name}`;
|
2018-07-12 12:53:49 +00:00
|
|
|
}
|
|
|
|
|
2018-07-14 16:04:39 +00:00
|
|
|
/** Find intersection of two (endless) lines */
|
2018-07-23 11:12:06 +00:00
|
|
|
export function beamsCross (a1, a2, b1, b2)
|
|
|
|
{
|
2018-07-14 16:04:39 +00:00
|
|
|
let slopeA = a1.slope(a2);
|
|
|
|
let slopeB = b1.slope(b2);
|
|
|
|
if(slopeA === slopeB) return false; // Parallel lines
|
|
|
|
|
2018-07-23 11:12:06 +00:00
|
|
|
if(a1.x === a2.x) return new point(a1.x, slopeB * a1.x + (b1.y - (slopeB * b1.x))); // Vertical line A
|
|
|
|
else if(b1.x === b2.x) return new point(b1.x, slopeA * b1.x + (a1.y - (slopeA * a1.x))); // Vertical line B
|
2018-07-14 16:04:39 +00:00
|
|
|
else {
|
|
|
|
// Swap points if line A or B goes from right to left
|
|
|
|
if(a1.x > a2.x) {
|
|
|
|
let tmp = a1.copy();
|
|
|
|
a1 = a2.copy();
|
|
|
|
a2 = tmp;
|
|
|
|
}
|
|
|
|
if(b1.x > b2.x) {
|
|
|
|
let tmp = b1.copy();
|
|
|
|
b1 = b2.copy();
|
|
|
|
b2 = tmp;
|
|
|
|
}
|
|
|
|
// Find y intercept
|
|
|
|
let iA = a1.y - (slopeA * a1.x);
|
|
|
|
let iB = b1.y - (slopeB * b1.x);
|
|
|
|
|
|
|
|
// Find intersection
|
|
|
|
let x = (iB - iA) / (slopeA - slopeB);
|
2018-07-15 17:15:56 +02:00
|
|
|
let y = slopeA * x + iA;
|
2018-07-14 16:04:39 +00:00
|
|
|
|
2018-07-23 11:12:06 +00:00
|
|
|
return new point(x, y);
|
2018-07-14 16:04:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Find intersection of two line segments */
|
2018-07-23 11:12:06 +00:00
|
|
|
export function linesCross (a1, a2, b1, b2)
|
|
|
|
{
|
2018-07-14 16:04:39 +00:00
|
|
|
let p = beamsCross(a1,a2,b1,b2);
|
|
|
|
if(p) {
|
|
|
|
let lenA = a1.dist(a2);
|
|
|
|
let lenB = b1.dist(b2);
|
|
|
|
let lenC = a1.dist(p) + p.dist(a2);
|
|
|
|
let lenD = b1.dist(p) + p.dist(b2);
|
|
|
|
if (round(lenA) == round(lenC) && round(lenB) == round(lenD)) return p;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-07-19 14:02:04 +00:00
|
|
|
/** Find where an (endless) line crosses a certain Y-value */
|
2018-07-23 11:12:06 +00:00
|
|
|
export function beamCrossesY (from, to, y)
|
|
|
|
{
|
2018-07-19 14:02:04 +00:00
|
|
|
if(from.y === to.y) return false; // Horizontal line
|
2018-07-23 11:12:06 +00:00
|
|
|
let left = new point(-10,y);
|
|
|
|
let right = new point(10,y);
|
2018-07-19 14:02:04 +00:00
|
|
|
|
|
|
|
return beamsCross(from, to, left, right);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Returns an object with shorthand access for pattern design */
|
2018-07-23 11:12:06 +00:00
|
|
|
export function shorthand(part, context)
|
|
|
|
{
|
2018-07-19 14:02:04 +00:00
|
|
|
let final = (context.settings.mode === 'draft') ? true : false;
|
|
|
|
let paperless = (context.settings.paperless === true) ? true : false;
|
|
|
|
return {
|
|
|
|
measurements: context.settings.measurements || {},
|
|
|
|
options: context.options || {},
|
|
|
|
values: context.values || {},
|
|
|
|
points: part.points || {},
|
|
|
|
paths: part.paths || {},
|
|
|
|
snippets: part.snippets || {},
|
2018-07-21 12:54:29 +02:00
|
|
|
macro: part.macroRunner(),
|
2018-07-19 14:02:04 +00:00
|
|
|
final,
|
|
|
|
paperless
|
|
|
|
}
|
|
|
|
}
|