@khanacademy/kmath 0.1.10 → 0.1.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,117 +0,0 @@
1
- import * as line from "../line";
2
-
3
- describe("kline", function () {
4
- it("finds distance to point", () => {
5
- const result = line.distanceToPoint(
6
- [
7
- [-5, 0],
8
- [5, 0],
9
- ],
10
- [0, 5],
11
- );
12
- expect(result).toBe(5);
13
- });
14
-
15
- it("reflects a point", () => {
16
- const result = line.reflectPoint(
17
- [
18
- [-5, -5],
19
- [5, 5],
20
- ],
21
- [0, 5],
22
- );
23
- expect(result).toEqual([5, 0]);
24
- });
25
-
26
- it("finds the midpoint", () => {
27
- const result = line.midpoint([
28
- [-5, -5],
29
- [5, 5],
30
- ]);
31
- expect(result).toEqual([0, 0]);
32
- });
33
-
34
- it("two identical lines should be equal", function () {
35
- const result = line.equal(
36
- [
37
- [1, 1],
38
- [3, 3],
39
- ],
40
- [
41
- [1, 1],
42
- [3, 3],
43
- ],
44
- );
45
- expect(result).toBe(true);
46
- });
47
-
48
- it("two parallel lines should not be equal", function () {
49
- const result = line.equal(
50
- [
51
- [1, 1],
52
- [3, 3],
53
- ],
54
- [
55
- [1, 2],
56
- [3, 4],
57
- ],
58
- );
59
- expect(result).toBe(false);
60
- });
61
-
62
- it("two intersecting lines should not be equal", function () {
63
- const result = line.equal(
64
- [
65
- [1, 1],
66
- [3, 3],
67
- ],
68
- [
69
- [1, 1],
70
- [3, 4],
71
- ],
72
- );
73
- expect(result).toBe(false);
74
- });
75
-
76
- it("two collinear lines should be equal #1", function () {
77
- const result = line.equal(
78
- [
79
- [1, 1],
80
- [3, 3],
81
- ],
82
- [
83
- [0, 0],
84
- [5, 5],
85
- ],
86
- );
87
- expect(result).toBe(true);
88
- });
89
-
90
- it("two collinear lines should be equal #2", function () {
91
- const result = line.equal(
92
- [
93
- [4, 4],
94
- [5, 5],
95
- ],
96
- [
97
- [0, 0],
98
- [1, 1],
99
- ],
100
- );
101
- expect(result).toBe(true);
102
- });
103
-
104
- it("two collinear lines should be equal #3", function () {
105
- const result = line.equal(
106
- [
107
- [0, 0],
108
- [1, 1],
109
- ],
110
- [
111
- [3, 3],
112
- [6, 6],
113
- ],
114
- );
115
- expect(result).toBe(true);
116
- });
117
- });
@@ -1,119 +0,0 @@
1
- import {describe, it} from "@jest/globals";
2
-
3
- import * as number from "../number";
4
-
5
- describe("knumber", function () {
6
- it.each([3, Math.PI, 6.28, 5e10, 1 / 0])("is a number: %s", (num: any) => {
7
- expect(number.is(num)).toBe(true);
8
- });
9
-
10
- it.each(["10", 0 / 0, NaN])("is not a number:%s", (num: any) => {
11
- expect(number.is(num)).toBe(false);
12
- });
13
-
14
- it("two equal numbers should be equal", function () {
15
- const result = number.equal(1 / 3, (1 / 90) * 30);
16
- expect(result).toBe(true);
17
- });
18
-
19
- it("two different numbers should not be equal", function () {
20
- const result = number.equal(1 / 3, 1.333333);
21
- expect(result).toBe(false);
22
- });
23
-
24
- it("Infinity should equal Infinity", function () {
25
- const result = number.equal(
26
- Number.POSITIVE_INFINITY,
27
- Number.POSITIVE_INFINITY,
28
- );
29
- expect(result).toBe(true);
30
- });
31
-
32
- it("+Infinity should not equal -Infinity", function () {
33
- const result = number.equal(
34
- Number.POSITIVE_INFINITY,
35
- Number.NEGATIVE_INFINITY,
36
- );
37
- expect(result).toBe(false);
38
- });
39
-
40
- it("sign(0) should be 0", function () {
41
- expect(number.sign(0)).toBe(0);
42
- });
43
-
44
- it("sign(-0.0) should be 0", function () {
45
- expect(number.sign(-0.0)).toBe(0);
46
- });
47
-
48
- it("sign(3.2) should be 1", function () {
49
- expect(number.sign(3.2)).toBe(1);
50
- });
51
-
52
- it("sign(-2.8) should be -1", function () {
53
- expect(number.sign(-2.8)).toBe(-1);
54
- });
55
-
56
- it("isInteger(-2.8) should be false", function () {
57
- expect(number.isInteger(-2.8)).toBe(false);
58
- });
59
-
60
- it("isInteger(-2) should be true", function () {
61
- expect(number.isInteger(-2)).toBe(true);
62
- });
63
-
64
- it("isInteger(10.0) should be true", () => {
65
- expect(number.isInteger(10)).toBe(true);
66
- });
67
-
68
- it("rounds to correct precision", () => {
69
- expect(number.round(0.06793, 4)).toBe(0.0679);
70
- expect(number.round(0.06793, 3)).toBe(0.068);
71
- });
72
-
73
- it("rounds to correct interval", () => {
74
- expect(number.roundTo(83, 5)).toBe(85);
75
- expect(number.roundTo(2.3, 0.5)).toBe(2.5);
76
- });
77
-
78
- it("floors to the correct interval", () => {
79
- expect(number.floorTo(83, 5)).toBe(80);
80
- expect(number.floorTo(2.3, 0.5)).toBe(2);
81
- });
82
-
83
- it("ceils to the correct interval", () => {
84
- expect(number.ceilTo(81, 5)).toBe(85);
85
- expect(number.ceilTo(2.1, 0.5)).toBe(2.5);
86
- });
87
-
88
- it("toFraction(-2) should be -2/1", function () {
89
- expect(number.toFraction(-2)).toStrictEqual([-2, 1]);
90
- });
91
-
92
- it("toFraction(-2.5) should be -5/2", function () {
93
- expect(number.toFraction(-2.5)).toStrictEqual([-5, 2]);
94
- });
95
-
96
- it("toFraction(2/3) should be 2/3", function () {
97
- expect(number.toFraction(2 / 3)).toStrictEqual([2, 3]);
98
- });
99
-
100
- it("toFraction(283.33...) should be 850/3", function () {
101
- expect(number.toFraction(283 + 1 / 3)).toStrictEqual([850, 3]);
102
- });
103
-
104
- it("toFraction(0) should be 0/1", function () {
105
- expect(number.toFraction(0)).toStrictEqual([0, 1]);
106
- });
107
-
108
- it("toFraction(pi) should be pi/1", function () {
109
- expect(number.toFraction(Math.PI)).toStrictEqual([Math.PI, 1]);
110
- });
111
-
112
- it("toFraction(0.66) should be 33/50", function () {
113
- expect(number.toFraction(0.66)).toStrictEqual([33, 50]);
114
- });
115
-
116
- it("toFraction(0.66, 0.01) should be 2/3", function () {
117
- expect(number.toFraction(0.66, 0.01)).toStrictEqual([2, 3]);
118
- });
119
- });
@@ -1,48 +0,0 @@
1
- import * as point from "../point";
2
-
3
- describe("kpoint", function () {
4
- it("point.compare should return positive if the first element is larger", function () {
5
- const result = point.compare([5, 2], [3, 4]);
6
- expect(result).toBeGreaterThan(0);
7
- });
8
-
9
- it("point.compare should return negative if the first element is smaller", function () {
10
- const result = point.compare([2, 2], [4, 0]);
11
- expect(result).toBeLessThan(0);
12
- });
13
-
14
- it("point.compare should return positive if the second element is larger", function () {
15
- const result = point.compare([5, 2], [5, 1]);
16
- expect(result).toBeGreaterThan(0);
17
- });
18
-
19
- it("point.compare should return negative if the second element is smaller", function () {
20
- const result = point.compare([2, 2], [2, 4]);
21
- expect(result).toBeLessThan(0);
22
- });
23
-
24
- it("point.compare should return positive if the third element is larger", function () {
25
- const result = point.compare([5, 3, -2], [5, 3, -4]);
26
- expect(result).toBeGreaterThan(0);
27
- });
28
-
29
- it("point.compare should return negative if the third element is smaller", function () {
30
- const result = point.compare([2, -1, -4], [2, -1, -2]);
31
- expect(result).toBeLessThan(0);
32
- });
33
-
34
- it("point.compare should return 0 if the vectors are equal", function () {
35
- const result = point.compare([2, 4, 3], [2, 4, 3]);
36
- expect(result).toBe(0);
37
- });
38
-
39
- it("point.compare should return negative if v1 is shorter than v2", function () {
40
- const result = point.compare([2, 4], [2, 4, 3]);
41
- expect(result).toBeLessThan(0);
42
- });
43
-
44
- it("point.compare should return positive if v1 is longer than v2", function () {
45
- const result = point.compare([2, 4, -2], [2, 2]);
46
- expect(result).toBeGreaterThan(0);
47
- });
48
- });
@@ -1,145 +0,0 @@
1
- import * as vector from "../vector";
2
-
3
- describe("kvector", function () {
4
- it("vector.zip should return empty given empty", function () {
5
- expect(vector.zip([], [])).toEqual([]);
6
- });
7
-
8
- it("vector.zip should create vectors from x and y coords", function () {
9
- expect(vector.zip([1, 2], [3, 4])).toEqual([
10
- [1, 3],
11
- [2, 4],
12
- ]);
13
- });
14
-
15
- it("vector.zip should ignore extra xs", function () {
16
- expect(vector.zip([1, 2, 9], [3, 4])).toEqual([
17
- [1, 3],
18
- [2, 4],
19
- ]);
20
- });
21
-
22
- it("vector.zip should ignore extra ys", function () {
23
- expect(vector.zip([1, 2], [3, 4, 9])).toEqual([
24
- [1, 3],
25
- [2, 4],
26
- ]);
27
- });
28
-
29
- it("vector.map should transform a 2D vector", function () {
30
- const double = (x) => x * 2;
31
- expect(vector.map([3, 4], double)).toEqual([6, 8]);
32
- });
33
-
34
- it("vector.map should pass the index of each element to the callback", function () {
35
- expect(vector.map([3, 4], (_, i) => i)).toEqual([0, 1]);
36
- });
37
-
38
- it("vector.add should add two 2D vectors", function () {
39
- const result = vector.add([1, 2], [3, 4]);
40
- expect(result).toStrictEqual([4, 6]);
41
- });
42
-
43
- it("vector.add should add two 3D vectors", function () {
44
- const result = vector.add([1, 2, 3], [4, 5, 6]);
45
- expect(result).toStrictEqual([5, 7, 9]);
46
- });
47
-
48
- it("vector.add should add three 2D vectors", function () {
49
- const result = vector.add([1, 2], [3, 4], [5, 6]);
50
- expect(result).toStrictEqual([9, 12]);
51
- });
52
-
53
- it("vector.subtract should subtract two 2D vectors", function () {
54
- const result = vector.subtract([1, 2], [3, 4]);
55
- expect(result).toStrictEqual([-2, -2]);
56
- });
57
-
58
- it("vector.subtract should subtract two 3D vectors", function () {
59
- const result = vector.subtract([1, 2, 3], [4, 5, 6]);
60
- expect(result).toStrictEqual([-3, -3, -3]);
61
- });
62
-
63
- it("vector.dot should take the dot product of 2 2D vectors", function () {
64
- const result = vector.dot([1, 2], [3, 4]);
65
- expect(result).toBe(3 + 8);
66
- });
67
-
68
- it("vector.dot should take the dot product of 2 3D vectors", function () {
69
- const result = vector.dot([1, 2, 3], [4, 5, 6]);
70
- expect(result).toBe(4 + 10 + 18);
71
- });
72
-
73
- it("vector.scale should scale a 2D vector", function () {
74
- const result = vector.scale([4, 2], 0.5);
75
- expect(result).toStrictEqual([2, 1]);
76
- });
77
-
78
- it("vector.scale should scale a 3D vector", function () {
79
- const result = vector.scale([1, 2, 3], 2);
80
- expect(result).toStrictEqual([2, 4, 6]);
81
- });
82
-
83
- it("vector.length should take the length of a 2D vector", function () {
84
- const result = vector.length([3, 4]);
85
- expect(result).toBe(5);
86
- });
87
-
88
- it("vector.length should take the length of a 3D vector", function () {
89
- const result = vector.length([4, 0, 3]);
90
- expect(result).toBe(5);
91
- });
92
-
93
- it("vector.equal should return true on two equal 3D vectors", function () {
94
- const result = vector.equal([6, 3, 4], [6, 3, 4]);
95
- expect(result).toBe(true);
96
- });
97
-
98
- it("vector.equal should return false on two inequal 3D vectors", function () {
99
- const result = vector.equal([6, 3, 4], [6, 4, 4]);
100
- expect(result).toBe(false);
101
- });
102
-
103
- it("vector.equal should return false on a 2D and 3D vector", function () {
104
- const result = vector.equal([6, 4], [6, 4, 4]);
105
- expect(result).toBe(false);
106
- });
107
-
108
- it("vector.equal should return false on a 2D and 3D vector", function () {
109
- const result = vector.equal([6, 3, 4], [6, 3]);
110
- expect(result).toBe(false);
111
- });
112
-
113
- it("vector.equal should return false on a 2D and 3D vector with a trailing 0", function () {
114
- const result = vector.equal([6, 3, 0], [6, 3]);
115
- expect(result).toBe(false);
116
- });
117
-
118
- it(
119
- "vector.collinear should return true on two collinear vectors of " +
120
- "the same magnitude but different direction",
121
- function () {
122
- const result = vector.collinear([3, 3], [-3, -3]);
123
- expect(result).toBe(true);
124
- },
125
- );
126
-
127
- it(
128
- "vector.collinear should return true on two collinear vectors of " +
129
- "different magnitudes",
130
- function () {
131
- const result = vector.collinear([2, 1], [6, 3]);
132
- expect(result).toBe(true);
133
- },
134
- );
135
-
136
- it("vector.collinear should return false on non-collinear vectors", function () {
137
- const result = vector.collinear([1, 2], [-1, 2]);
138
- expect(result).toBe(false);
139
- });
140
-
141
- it("vector.negate of [-2, 2] is [2, -2]", function () {
142
- const result = vector.negate([-2, 2]);
143
- expect(result).toStrictEqual([2, -2]);
144
- });
145
- });
package/src/index.ts DELETED
@@ -1,7 +0,0 @@
1
- export {libVersion} from "./version";
2
-
3
- export * as number from "./number";
4
- export * as vector from "./vector";
5
- export * as point from "./point";
6
- export * as line from "./line";
7
- export * as ray from "./ray";
package/src/line.ts DELETED
@@ -1,42 +0,0 @@
1
- /**
2
- * Line Utils
3
- * A line is an array of two points e.g. [[-5, 0], [5, 0]].
4
- */
5
-
6
- import * as kpoint from "./point";
7
- import * as kvector from "./vector";
8
-
9
- import type {Point} from "./point";
10
-
11
- export type Line = [Point, Point];
12
-
13
- export function distanceToPoint(line: Line, point: Point): number {
14
- return kpoint.distanceToLine(point, line);
15
- }
16
-
17
- export function reflectPoint(line: Line, point: Point): Point {
18
- return kpoint.reflectOverLine(point, line);
19
- }
20
-
21
- export function midpoint(line: Line): Point {
22
- return [(line[0][0] + line[1][0]) / 2, (line[0][1] + line[1][1]) / 2];
23
- }
24
-
25
- export function equal(line1: Line, line2: Line, tolerance?: number): boolean {
26
- // TODO: A nicer implementation might just check collinearity of
27
- // vectors using underscore magick
28
- // Compare the directions of the lines
29
- const v1 = kvector.subtract(line1[1], line1[0]);
30
- const v2 = kvector.subtract(line2[1], line2[0]);
31
- if (!kvector.collinear(v1, v2, tolerance)) {
32
- return false;
33
- }
34
- // If the start point is the same for the two lines, then they are the same
35
- if (kpoint.equal(line1[0], line2[0])) {
36
- return true;
37
- }
38
- // Make sure that the direction to get from line1 to
39
- // line2 is the same as the direction of the lines
40
- const line1ToLine2Vector = kvector.subtract(line2[0], line1[0]);
41
- return kvector.collinear(v1, line1ToLine2Vector, tolerance);
42
- }
package/src/logo.ts DELETED
@@ -1,39 +0,0 @@
1
- /* eslint-disable import/no-default-export */
2
- // This file describes the graphie source code of the kmath logo
3
- // currently used on khan.github.io.
4
- //
5
- // Also located at http://ka-perseus-graphie.s3.amazonaws.com/42ef3cbadc3e6464124533191728c3c5c55c7355.svg
6
-
7
- declare let init: any;
8
- declare let ellipse: any;
9
- declare let line: any;
10
-
11
- const GREEN = "#28AE7B";
12
-
13
- export default () => {
14
- init({
15
- range: [
16
- [0, 10],
17
- [0, 10],
18
- ],
19
- scale: 40,
20
- });
21
-
22
- ellipse(5, 5, 5, {
23
- stroke: null,
24
- fill: GREEN,
25
- });
26
-
27
- line([2, 5], [8.5, 5], {
28
- stroke: "WHITE",
29
- fill: "WHITE",
30
- strokeWidth: 25,
31
- arrows: "->",
32
- });
33
-
34
- line([5, 2], [5, 8], {
35
- stroke: "WHITE",
36
- fill: "WHITE",
37
- strokeWidth: 25,
38
- });
39
- };
package/src/number.ts DELETED
@@ -1,104 +0,0 @@
1
- /**
2
- * Number Utils
3
- * A number is a js-number, e.g. 5.12
4
- */
5
-
6
- import _ from "underscore";
7
-
8
- export const DEFAULT_TOLERANCE = 1e-9;
9
-
10
- // TODO: Should this just be Number.Epsilon
11
- export const EPSILON: number = Math.pow(2, -42);
12
-
13
- export function is(x: any): boolean {
14
- return _.isNumber(x) && !_.isNaN(x);
15
- }
16
-
17
- export function equal(x: number, y: number, tolerance?: number): boolean {
18
- // Checking for undefined makes this function behave nicely
19
- // with vectors of different lengths that are _.zip'd together
20
- if (x == null || y == null) {
21
- return x === y;
22
- }
23
- // We check === here so that +/-Infinity comparisons work correctly
24
- if (x === y) {
25
- return true;
26
- }
27
- if (tolerance == null) {
28
- tolerance = DEFAULT_TOLERANCE;
29
- }
30
- return Math.abs(x - y) < tolerance;
31
- }
32
-
33
- export function sign(
34
- x: number,
35
- tolerance?: number,
36
- ): number /* Should be: 0 | 1 | -1 */ {
37
- return equal(x, 0, tolerance) ? 0 : Math.abs(x) / x;
38
- }
39
-
40
- export function isInteger(num: number, tolerance?: number): boolean {
41
- return equal(Math.round(num), num, tolerance);
42
- }
43
-
44
- // Round a number to a certain number of decimal places
45
- export function round(num: number, precision: number): number {
46
- const factor = Math.pow(10, precision);
47
- return Math.round(num * factor) / factor;
48
- }
49
-
50
- // Round num to the nearest multiple of increment
51
- // i.e. roundTo(83, 5) -> 85
52
- export function roundTo(num: number, increment: number): number {
53
- return Math.round(num / increment) * increment;
54
- }
55
-
56
- export function floorTo(num: number, increment: number): number {
57
- return Math.floor(num / increment) * increment;
58
- }
59
-
60
- export function ceilTo(num: number, increment: number): number {
61
- return Math.ceil(num / increment) * increment;
62
- }
63
-
64
- /**
65
- * toFraction
66
- *
67
- * Returns a [numerator, denominator] array rational representation
68
- * of `decimal`
69
- *
70
- * See http://en.wikipedia.org/wiki/Continued_fraction for implementation
71
- * details
72
- *
73
- * toFraction(4/8) => [1, 2]
74
- * toFraction(0.66) => [33, 50]
75
- * toFraction(0.66, 0.01) => [2/3]
76
- * toFraction(283 + 1/3) => [850, 3]
77
- */
78
- export function toFraction(
79
- decimal: number,
80
- // can't be 0
81
- tolerance: number = EPSILON,
82
- maxDenominator = 1000,
83
- ): [number, number] {
84
- // Initialize everything to compute successive terms of
85
- // continued-fraction approximations via recurrence relation
86
- let n = [1, 0];
87
- let d = [0, 1];
88
- let a = Math.floor(decimal);
89
- let rem = decimal - a;
90
-
91
- while (d[0] <= maxDenominator) {
92
- if (equal(n[0] / d[0], decimal, tolerance)) {
93
- return [n[0], d[0]];
94
- }
95
- n = [a * n[0] + n[1], n[0]];
96
- d = [a * d[0] + d[1], d[0]];
97
- a = Math.floor(1 / rem);
98
- rem = 1 / rem - a;
99
- }
100
-
101
- // We failed to find a nice rational representation,
102
- // so return an irrational "fraction"
103
- return [decimal, 1];
104
- }