2023-04-03 16:05:25 +10:00
|
|
|
import { SourceRange } from '../lang/executor'
|
2022-11-26 05:13:07 +11:00
|
|
|
|
2023-04-03 16:05:25 +10:00
|
|
|
export function isOverlap(a: SourceRange, b: SourceRange) {
|
2023-02-12 10:56:45 +11:00
|
|
|
const [startingRange, secondRange] = a[0] < b[0] ? [a, b] : [b, a]
|
|
|
|
const [lastOfFirst, firstOfSecond] = [startingRange[1], secondRange[0]]
|
|
|
|
return lastOfFirst >= firstOfSecond
|
|
|
|
}
|
|
|
|
|
|
|
|
export function roundOff(num: number, places: number = 2): number {
|
|
|
|
const x = Math.pow(10, places)
|
|
|
|
return Math.round(num * x) / x
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getLength(a: [number, number], b: [number, number]): number {
|
|
|
|
const x = b[0] - a[0]
|
|
|
|
const y = b[1] - a[1]
|
|
|
|
return Math.sqrt(x * x + y * y)
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getAngle(a: [number, number], b: [number, number]): number {
|
|
|
|
const x = b[0] - a[0]
|
|
|
|
const y = b[1] - a[1]
|
2023-04-02 17:20:11 +10:00
|
|
|
const result = ((Math.atan2(y, x) * 180) / Math.PI + 360) % 360
|
|
|
|
return result > 180 ? result - 360 : result
|
2022-11-26 08:34:23 +11:00
|
|
|
}
|