@operato/scene-polypath 1.2.47 → 1.2.49
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.
- package/CHANGELOG.md +9 -0
- package/package.json +2 -2
- package/dist/polyline copy.d.ts +0 -20
- package/dist/polyline copy.js +0 -62
- package/dist/polyline copy.js.map +0 -1
- package/dist/polyline2.d.ts +0 -10
- package/dist/polyline2.js +0 -29
- package/dist/polyline2.js.map +0 -1
- package/dist/vector.d.ts +0 -20
- package/dist/vector.js +0 -51
- package/dist/vector.js.map +0 -1
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +0 -25
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +0 -25
- package/logs/application-2023-06-10-07.log +0 -7
- package/logs/application-2023-06-10-18.log +0 -5
- package/logs/application-2023-06-11-09.log +0 -5
- package/logs/connections-2023-06-10-07.log +0 -41
- package/logs/connections-2023-06-10-18.log +0 -41
- package/logs/connections-2023-06-11-09.log +0 -41
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.2.49](https://github.com/things-scene/operato-scene/compare/v1.2.48...v1.2.49) (2023-06-26)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### :bug: Bug Fix
|
|
10
|
+
|
|
11
|
+
* missing .npmignore ([61ba4f2](https://github.com/things-scene/operato-scene/commit/61ba4f2ae22a865d700a971d62eb01f950c34d0e))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
## [1.2.47](https://github.com/things-scene/operato-scene/compare/v1.2.46...v1.2.47) (2023-06-11)
|
|
7
16
|
|
|
8
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/scene-polypath",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.49",
|
|
4
4
|
"description": "Poly path component for things-scene",
|
|
5
5
|
"author": "heartyoh",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"prettier --write"
|
|
58
58
|
]
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "f91b0d45641177ae36015ebd23b780a48715349b"
|
|
61
61
|
}
|
package/dist/polyline copy.d.ts
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
export interface Point {
|
|
2
|
-
x: number;
|
|
3
|
-
y: number;
|
|
4
|
-
}
|
|
5
|
-
export declare class Vector {
|
|
6
|
-
x: number;
|
|
7
|
-
y: number;
|
|
8
|
-
constructor(x: number, y: number);
|
|
9
|
-
static subtract(v1: Vector, v2: Vector): Vector;
|
|
10
|
-
static add(v1: Vector, v2: Vector): Vector;
|
|
11
|
-
normalize(): Vector;
|
|
12
|
-
perp(): Vector;
|
|
13
|
-
mult(scalar: number): Vector;
|
|
14
|
-
}
|
|
15
|
-
export declare class Polyline {
|
|
16
|
-
private points;
|
|
17
|
-
private thickness;
|
|
18
|
-
constructor(points: Point[], thickness: number);
|
|
19
|
-
draw(ctx: CanvasRenderingContext2D): void;
|
|
20
|
-
}
|
package/dist/polyline copy.js
DELETED
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
export class Vector {
|
|
2
|
-
constructor(x, y) {
|
|
3
|
-
this.x = x;
|
|
4
|
-
this.y = y;
|
|
5
|
-
}
|
|
6
|
-
static subtract(v1, v2) {
|
|
7
|
-
return new Vector(v1.x - v2.x, v1.y - v2.y);
|
|
8
|
-
}
|
|
9
|
-
static add(v1, v2) {
|
|
10
|
-
return new Vector(v1.x + v2.x, v1.y + v2.y);
|
|
11
|
-
}
|
|
12
|
-
normalize() {
|
|
13
|
-
const length = Math.sqrt(this.x * this.x + this.y * this.y);
|
|
14
|
-
return new Vector(this.x / length, this.y / length);
|
|
15
|
-
}
|
|
16
|
-
perp() {
|
|
17
|
-
return new Vector(-this.y, this.x);
|
|
18
|
-
}
|
|
19
|
-
mult(scalar) {
|
|
20
|
-
return new Vector(this.x * scalar, this.y * scalar);
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
export class Polyline {
|
|
24
|
-
constructor(points, thickness) {
|
|
25
|
-
this.points = points.map(p => new Vector(p.x, p.y));
|
|
26
|
-
this.thickness = thickness;
|
|
27
|
-
}
|
|
28
|
-
draw(ctx) {
|
|
29
|
-
let innerPoints = [];
|
|
30
|
-
let outerPoints = [];
|
|
31
|
-
for (let i = 0; i < this.points.length - 1; i++) {
|
|
32
|
-
let start = this.points[i];
|
|
33
|
-
let end = this.points[i + 1];
|
|
34
|
-
let direction = Vector.subtract(end, start).normalize();
|
|
35
|
-
let perpendicular = direction.perp();
|
|
36
|
-
let thicknessVector = perpendicular.mult(this.thickness / 2);
|
|
37
|
-
let startInner = Vector.subtract(start, thicknessVector);
|
|
38
|
-
let startOuter = Vector.add(start, thicknessVector);
|
|
39
|
-
let endInner = Vector.subtract(end, thicknessVector);
|
|
40
|
-
let endOuter = Vector.add(end, thicknessVector);
|
|
41
|
-
innerPoints.push(startInner, endInner);
|
|
42
|
-
outerPoints.push(startOuter, endOuter);
|
|
43
|
-
}
|
|
44
|
-
ctx.beginPath();
|
|
45
|
-
// Draw outer points
|
|
46
|
-
outerPoints.forEach((point, index) => {
|
|
47
|
-
if (index === 0) {
|
|
48
|
-
ctx.moveTo(point.x, point.y);
|
|
49
|
-
}
|
|
50
|
-
else {
|
|
51
|
-
ctx.lineTo(point.x, point.y);
|
|
52
|
-
}
|
|
53
|
-
});
|
|
54
|
-
// Draw inner points in reverse order
|
|
55
|
-
innerPoints.reverse().forEach(point => {
|
|
56
|
-
ctx.lineTo(point.x, point.y);
|
|
57
|
-
});
|
|
58
|
-
ctx.closePath();
|
|
59
|
-
ctx.fill();
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
//# sourceMappingURL=polyline%20copy.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"polyline copy.js","sourceRoot":"","sources":["../src/polyline copy.ts"],"names":[],"mappings":"AAKA,MAAM,OAAO,MAAM;IACjB,YAAmB,CAAS,EAAS,CAAS;QAA3B,MAAC,GAAD,CAAC,CAAQ;QAAS,MAAC,GAAD,CAAC,CAAQ;IAAG,CAAC;IAElD,MAAM,CAAC,QAAQ,CAAC,EAAU,EAAE,EAAU;QACpC,OAAO,IAAI,MAAM,CAAC,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAA;IAC7C,CAAC;IAED,MAAM,CAAC,GAAG,CAAC,EAAU,EAAE,EAAU;QAC/B,OAAO,IAAI,MAAM,CAAC,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAA;IAC7C,CAAC;IAED,SAAS;QACP,MAAM,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,CAAA;QAC3D,OAAO,IAAI,MAAM,CAAC,IAAI,CAAC,CAAC,GAAG,MAAM,EAAE,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAA;IACrD,CAAC;IAED,IAAI;QACF,OAAO,IAAI,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAA;IACpC,CAAC;IAED,IAAI,CAAC,MAAc;QACjB,OAAO,IAAI,MAAM,CAAC,IAAI,CAAC,CAAC,GAAG,MAAM,EAAE,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAA;IACrD,CAAC;CACF;AAED,MAAM,OAAO,QAAQ;IAInB,YAAY,MAAe,EAAE,SAAiB;QAC5C,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;QACnD,IAAI,CAAC,SAAS,GAAG,SAAS,CAAA;IAC5B,CAAC;IAED,IAAI,CAAC,GAA6B;QAChC,IAAI,WAAW,GAAa,EAAE,CAAA;QAC9B,IAAI,WAAW,GAAa,EAAE,CAAA;QAE9B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE;YAC/C,IAAI,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAA;YAC1B,IAAI,GAAG,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAA;YAE5B,IAAI,SAAS,GAAG,MAAM,CAAC,QAAQ,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC,SAAS,EAAE,CAAA;YACvD,IAAI,aAAa,GAAG,SAAS,CAAC,IAAI,EAAE,CAAA;YACpC,IAAI,eAAe,GAAG,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC,CAAA;YAE5D,IAAI,UAAU,GAAG,MAAM,CAAC,QAAQ,CAAC,KAAK,EAAE,eAAe,CAAC,CAAA;YACxD,IAAI,UAAU,GAAG,MAAM,CAAC,GAAG,CAAC,KAAK,EAAE,eAAe,CAAC,CAAA;YACnD,IAAI,QAAQ,GAAG,MAAM,CAAC,QAAQ,CAAC,GAAG,EAAE,eAAe,CAAC,CAAA;YACpD,IAAI,QAAQ,GAAG,MAAM,CAAC,GAAG,CAAC,GAAG,EAAE,eAAe,CAAC,CAAA;YAE/C,WAAW,CAAC,IAAI,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAA;YACtC,WAAW,CAAC,IAAI,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAA;SACvC;QAED,GAAG,CAAC,SAAS,EAAE,CAAA;QAEf,oBAAoB;QACpB,WAAW,CAAC,OAAO,CAAC,CAAC,KAAK,EAAE,KAAK,EAAE,EAAE;YACnC,IAAI,KAAK,KAAK,CAAC,EAAE;gBACf,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,CAAA;aAC7B;iBAAM;gBACL,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,CAAA;aAC7B;QACH,CAAC,CAAC,CAAA;QAEF,qCAAqC;QACrC,WAAW,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE;YACpC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,CAAA;QAC9B,CAAC,CAAC,CAAA;QAEF,GAAG,CAAC,SAAS,EAAE,CAAA;QACf,GAAG,CAAC,IAAI,EAAE,CAAA;IACZ,CAAC;CACF","sourcesContent":["export interface Point {\n x: number\n y: number\n}\n\nexport class Vector {\n constructor(public x: number, public y: number) {}\n\n static subtract(v1: Vector, v2: Vector): Vector {\n return new Vector(v1.x - v2.x, v1.y - v2.y)\n }\n\n static add(v1: Vector, v2: Vector): Vector {\n return new Vector(v1.x + v2.x, v1.y + v2.y)\n }\n\n normalize(): Vector {\n const length = Math.sqrt(this.x * this.x + this.y * this.y)\n return new Vector(this.x / length, this.y / length)\n }\n\n perp(): Vector {\n return new Vector(-this.y, this.x)\n }\n\n mult(scalar: number): Vector {\n return new Vector(this.x * scalar, this.y * scalar)\n }\n}\n\nexport class Polyline {\n private points: Vector[]\n private thickness: number\n\n constructor(points: Point[], thickness: number) {\n this.points = points.map(p => new Vector(p.x, p.y))\n this.thickness = thickness\n }\n\n draw(ctx: CanvasRenderingContext2D): void {\n let innerPoints: Vector[] = []\n let outerPoints: Vector[] = []\n\n for (let i = 0; i < this.points.length - 1; i++) {\n let start = this.points[i]\n let end = this.points[i + 1]\n\n let direction = Vector.subtract(end, start).normalize()\n let perpendicular = direction.perp()\n let thicknessVector = perpendicular.mult(this.thickness / 2)\n\n let startInner = Vector.subtract(start, thicknessVector)\n let startOuter = Vector.add(start, thicknessVector)\n let endInner = Vector.subtract(end, thicknessVector)\n let endOuter = Vector.add(end, thicknessVector)\n\n innerPoints.push(startInner, endInner)\n outerPoints.push(startOuter, endOuter)\n }\n\n ctx.beginPath()\n\n // Draw outer points\n outerPoints.forEach((point, index) => {\n if (index === 0) {\n ctx.moveTo(point.x, point.y)\n } else {\n ctx.lineTo(point.x, point.y)\n }\n })\n\n // Draw inner points in reverse order\n innerPoints.reverse().forEach(point => {\n ctx.lineTo(point.x, point.y)\n })\n\n ctx.closePath()\n ctx.fill()\n }\n}\n"]}
|
package/dist/polyline2.d.ts
DELETED
package/dist/polyline2.js
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
export class Polyline {
|
|
2
|
-
constructor(points, thickness) {
|
|
3
|
-
this.path = points;
|
|
4
|
-
this.thickness = thickness;
|
|
5
|
-
}
|
|
6
|
-
draw(ctx) {
|
|
7
|
-
const path = this.path;
|
|
8
|
-
ctx.beginPath();
|
|
9
|
-
ctx.strokeStyle = 'red';
|
|
10
|
-
ctx.lineWidth = 50;
|
|
11
|
-
ctx.lineJoin = 'bevel';
|
|
12
|
-
ctx.moveTo(path[0].x, path[0].y);
|
|
13
|
-
path.slice(1).forEach(point => {
|
|
14
|
-
ctx.lineTo(point.x, point.y);
|
|
15
|
-
});
|
|
16
|
-
ctx.stroke();
|
|
17
|
-
ctx.strokeStyle = 'black';
|
|
18
|
-
ctx.lineWidth = 40;
|
|
19
|
-
// ctx.setLineDash([4])
|
|
20
|
-
ctx.lineDashOffset = 4;
|
|
21
|
-
ctx.lineJoin = 'bevel';
|
|
22
|
-
ctx.moveTo(path[0].x, path[0].y);
|
|
23
|
-
path.slice(1).forEach(point => {
|
|
24
|
-
ctx.lineTo(point.x, point.y);
|
|
25
|
-
});
|
|
26
|
-
ctx.stroke();
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
//# sourceMappingURL=polyline2.js.map
|
package/dist/polyline2.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"polyline2.js","sourceRoot":"","sources":["../src/polyline2.ts"],"names":[],"mappings":"AAKA,MAAM,OAAO,QAAQ;IAInB,YAAY,MAAe,EAAE,SAAiB;QAC5C,IAAI,CAAC,IAAI,GAAG,MAAM,CAAA;QAClB,IAAI,CAAC,SAAS,GAAG,SAAS,CAAA;IAC5B,CAAC;IAED,IAAI,CAAC,GAA6B;QAChC,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAA;QAEtB,GAAG,CAAC,SAAS,EAAE,CAAA;QAEf,GAAG,CAAC,WAAW,GAAG,KAAK,CAAA;QACvB,GAAG,CAAC,SAAS,GAAG,EAAE,CAAA;QAClB,GAAG,CAAC,QAAQ,GAAG,OAAO,CAAA;QAEtB,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;QAEhC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE;YAC5B,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,CAAA;QAC9B,CAAC,CAAC,CAAA;QAEF,GAAG,CAAC,MAAM,EAAE,CAAA;QAEZ,GAAG,CAAC,WAAW,GAAG,OAAO,CAAA;QACzB,GAAG,CAAC,SAAS,GAAG,EAAE,CAAA;QAClB,uBAAuB;QACvB,GAAG,CAAC,cAAc,GAAG,CAAC,CAAA;QACtB,GAAG,CAAC,QAAQ,GAAG,OAAO,CAAA;QAEtB,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;QAEhC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE;YAC5B,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,CAAA;QAC9B,CAAC,CAAC,CAAA;QAEF,GAAG,CAAC,MAAM,EAAE,CAAA;IACd,CAAC;CACF","sourcesContent":["export interface Point {\n x: number\n y: number\n}\n\nexport class Polyline {\n private path: Point[]\n private thickness: number\n\n constructor(points: Point[], thickness: number) {\n this.path = points\n this.thickness = thickness\n }\n\n draw(ctx: CanvasRenderingContext2D): void {\n const path = this.path\n\n ctx.beginPath()\n\n ctx.strokeStyle = 'red'\n ctx.lineWidth = 50\n ctx.lineJoin = 'bevel'\n\n ctx.moveTo(path[0].x, path[0].y)\n\n path.slice(1).forEach(point => {\n ctx.lineTo(point.x, point.y)\n })\n\n ctx.stroke()\n\n ctx.strokeStyle = 'black'\n ctx.lineWidth = 40\n // ctx.setLineDash([4])\n ctx.lineDashOffset = 4\n ctx.lineJoin = 'bevel'\n\n ctx.moveTo(path[0].x, path[0].y)\n\n path.slice(1).forEach(point => {\n ctx.lineTo(point.x, point.y)\n })\n\n ctx.stroke()\n }\n}\n"]}
|
package/dist/vector.d.ts
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
export interface Point {
|
|
2
|
-
x: number;
|
|
3
|
-
y: number;
|
|
4
|
-
}
|
|
5
|
-
export declare class Vector {
|
|
6
|
-
x: number;
|
|
7
|
-
y: number;
|
|
8
|
-
constructor(x: number, y: number);
|
|
9
|
-
static subtract(v1: Vector, v2: Vector): Vector;
|
|
10
|
-
static add(v1: Vector, v2: Vector): Vector;
|
|
11
|
-
normalize(): Vector;
|
|
12
|
-
perp(): Vector;
|
|
13
|
-
mult(scalar: number): Vector;
|
|
14
|
-
}
|
|
15
|
-
export declare class Polyline {
|
|
16
|
-
private points;
|
|
17
|
-
private thickness;
|
|
18
|
-
constructor(points: Point[], thickness: number);
|
|
19
|
-
draw(ctx: CanvasRenderingContext2D): void;
|
|
20
|
-
}
|
package/dist/vector.js
DELETED
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
export class Vector {
|
|
2
|
-
constructor(x, y) {
|
|
3
|
-
this.x = x;
|
|
4
|
-
this.y = y;
|
|
5
|
-
}
|
|
6
|
-
static subtract(v1, v2) {
|
|
7
|
-
return new Vector(v1.x - v2.x, v1.y - v2.y);
|
|
8
|
-
}
|
|
9
|
-
static add(v1, v2) {
|
|
10
|
-
return new Vector(v1.x + v2.x, v1.y + v2.y);
|
|
11
|
-
}
|
|
12
|
-
normalize() {
|
|
13
|
-
const length = Math.sqrt(this.x * this.x + this.y * this.y);
|
|
14
|
-
return new Vector(this.x / length, this.y / length);
|
|
15
|
-
}
|
|
16
|
-
perp() {
|
|
17
|
-
return new Vector(-this.y, this.x);
|
|
18
|
-
}
|
|
19
|
-
mult(scalar) {
|
|
20
|
-
return new Vector(this.x * scalar, this.y * scalar);
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
export class Polyline {
|
|
24
|
-
constructor(points, thickness) {
|
|
25
|
-
this.points = points.map(p => new Vector(p.x, p.y));
|
|
26
|
-
this.thickness = thickness;
|
|
27
|
-
}
|
|
28
|
-
draw(ctx) {
|
|
29
|
-
ctx.beginPath();
|
|
30
|
-
for (let i = 0; i < this.points.length - 1; i++) {
|
|
31
|
-
let start = this.points[i];
|
|
32
|
-
let end = this.points[i + 1];
|
|
33
|
-
let direction = Vector.subtract(end, start).normalize();
|
|
34
|
-
let perpendicular = direction.perp();
|
|
35
|
-
let thicknessVector = perpendicular.mult(this.thickness / 2);
|
|
36
|
-
let startInner = Vector.subtract(start, thicknessVector);
|
|
37
|
-
let startOuter = Vector.add(start, thicknessVector);
|
|
38
|
-
let endInner = Vector.subtract(end, thicknessVector);
|
|
39
|
-
let endOuter = Vector.add(end, thicknessVector);
|
|
40
|
-
if (i === 0) {
|
|
41
|
-
ctx.moveTo(startInner.x, startInner.y);
|
|
42
|
-
}
|
|
43
|
-
ctx.lineTo(startOuter.x, startOuter.y);
|
|
44
|
-
ctx.lineTo(endOuter.x, endOuter.y);
|
|
45
|
-
ctx.lineTo(endInner.x, endInner.y);
|
|
46
|
-
}
|
|
47
|
-
ctx.closePath();
|
|
48
|
-
ctx.fill();
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
//# sourceMappingURL=vector.js.map
|
package/dist/vector.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"vector.js","sourceRoot":"","sources":["../src/vector.ts"],"names":[],"mappings":"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","sourcesContent":["export interface Point {\n x: number\n y: number\n}\n\nexport class Vector {\n constructor(public x: number, public y: number) {}\n\n static subtract(v1: Vector, v2: Vector): Vector {\n return new Vector(v1.x - v2.x, v1.y - v2.y)\n }\n\n static add(v1: Vector, v2: Vector): Vector {\n return new Vector(v1.x + v2.x, v1.y + v2.y)\n }\n\n normalize(): Vector {\n const length = Math.sqrt(this.x * this.x + this.y * this.y)\n return new Vector(this.x / length, this.y / length)\n }\n\n perp(): Vector {\n return new Vector(-this.y, this.x)\n }\n\n mult(scalar: number): Vector {\n return new Vector(this.x * scalar, this.y * scalar)\n }\n}\n\nexport class Polyline {\n private points: Vector[]\n private thickness: number\n\n constructor(points: Point[], thickness: number) {\n this.points = points.map(p => new Vector(p.x, p.y))\n this.thickness = thickness\n }\n\n draw(ctx: CanvasRenderingContext2D): void {\n ctx.beginPath()\n\n for (let i = 0; i < this.points.length - 1; i++) {\n let start = this.points[i]\n let end = this.points[i + 1]\n\n let direction = Vector.subtract(end, start).normalize()\n let perpendicular = direction.perp()\n let thicknessVector = perpendicular.mult(this.thickness / 2)\n\n let startInner = Vector.subtract(start, thicknessVector)\n let startOuter = Vector.add(start, thicknessVector)\n let endInner = Vector.subtract(end, thicknessVector)\n let endOuter = Vector.add(end, thicknessVector)\n\n if (i === 0) {\n ctx.moveTo(startInner.x, startInner.y)\n }\n\n ctx.lineTo(startOuter.x, startOuter.y)\n ctx.lineTo(endOuter.x, endOuter.y)\n ctx.lineTo(endInner.x, endInner.y)\n }\n\n ctx.closePath()\n ctx.fill()\n }\n}\n"]}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"keep": {
|
|
3
|
-
"days": true,
|
|
4
|
-
"amount": 2
|
|
5
|
-
},
|
|
6
|
-
"auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
|
|
7
|
-
"files": [
|
|
8
|
-
{
|
|
9
|
-
"date": 1686348181239,
|
|
10
|
-
"name": "logs/application-2023-06-10-07.log",
|
|
11
|
-
"hash": "fc0c195fb8de8119ccbcdff99c2f36c9080b942a0712a2db24fffc5efdd8fd4c"
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"date": 1686387806622,
|
|
15
|
-
"name": "logs/application-2023-06-10-18.log",
|
|
16
|
-
"hash": "35d818cf9d2be21ea3654e2dfe137d676d6b9b179d6be7fffdcdd1e7c4cfc569"
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"date": 1686442793116,
|
|
20
|
-
"name": "logs/application-2023-06-11-09.log",
|
|
21
|
-
"hash": "c436cafff58c2342bb0c68c5cffeaa10b39db0fa8e93f9793268b268f1e7db9f"
|
|
22
|
-
}
|
|
23
|
-
],
|
|
24
|
-
"hashType": "sha256"
|
|
25
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"keep": {
|
|
3
|
-
"days": true,
|
|
4
|
-
"amount": 14
|
|
5
|
-
},
|
|
6
|
-
"auditLog": "logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json",
|
|
7
|
-
"files": [
|
|
8
|
-
{
|
|
9
|
-
"date": 1686348182525,
|
|
10
|
-
"name": "logs/connections-2023-06-10-07.log",
|
|
11
|
-
"hash": "7d0fb0fde4aeed23a9518860c52aa07c36c0321a7b15d1f549d95d1a5cf81f31"
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"date": 1686387807842,
|
|
15
|
-
"name": "logs/connections-2023-06-10-18.log",
|
|
16
|
-
"hash": "7e318ed8475c12dec8a072680da4803c27ceed7567ba4245151aad0fe602a9a8"
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"date": 1686442794212,
|
|
20
|
-
"name": "logs/connections-2023-06-11-09.log",
|
|
21
|
-
"hash": "c971fe2d63582f9a0bbdc04deffc7a8634997dd3d27806f0ac2d85666f18b8e2"
|
|
22
|
-
}
|
|
23
|
-
],
|
|
24
|
-
"hashType": "sha256"
|
|
25
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
2023-06-10T07:03:01+09:00 info: File Storage is Ready.
|
|
2
|
-
2023-06-10T07:03:02+09:00 error: oracledb module loading failed
|
|
3
|
-
2023-06-10T07:03:27+09:00 info: File Storage is Ready.
|
|
4
|
-
2023-06-10T07:03:28+09:00 error: oracledb module loading failed
|
|
5
|
-
2023-06-10T07:03:28+09:00 info: Default DataSource established
|
|
6
|
-
2023-06-10T07:03:29+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
7
|
-
2023-06-10T07:03:29+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
2023-06-10T18:03:27+09:00 info: File Storage is Ready.
|
|
2
|
-
2023-06-10T18:03:28+09:00 error: oracledb module loading failed
|
|
3
|
-
2023-06-10T18:03:28+09:00 info: Default DataSource established
|
|
4
|
-
2023-06-10T18:03:29+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
5
|
-
2023-06-10T18:03:29+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
2023-06-11T09:19:53+09:00 info: File Storage is Ready.
|
|
2
|
-
2023-06-11T09:19:54+09:00 error: oracledb module loading failed
|
|
3
|
-
2023-06-11T09:19:55+09:00 info: Default DataSource established
|
|
4
|
-
2023-06-11T09:19:55+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
5
|
-
2023-06-11T09:19:55+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
2023-06-10T07:03:29+09:00 info: Initializing ConnectionManager...
|
|
2
|
-
2023-06-10T07:03:29+09:00 info: Connector 'echo-back-server' started to ready
|
|
3
|
-
2023-06-10T07:03:29+09:00 info: Connector 'echo-back' started to ready
|
|
4
|
-
2023-06-10T07:03:29+09:00 info: Connector 'http-connector' started to ready
|
|
5
|
-
2023-06-10T07:03:29+09:00 info: Connector 'graphql-connector' started to ready
|
|
6
|
-
2023-06-10T07:03:29+09:00 info: Connector 'sqlite-connector' started to ready
|
|
7
|
-
2023-06-10T07:03:29+09:00 info: Connector 'postgresql-connector' started to ready
|
|
8
|
-
2023-06-10T07:03:29+09:00 info: Connector 'mqtt-connector' started to ready
|
|
9
|
-
2023-06-10T07:03:29+09:00 info: Connector 'mssql-connector' started to ready
|
|
10
|
-
2023-06-10T07:03:29+09:00 info: Connector 'oracle-connector' started to ready
|
|
11
|
-
2023-06-10T07:03:29+09:00 info: Connector 'mysql-connector' started to ready
|
|
12
|
-
2023-06-10T07:03:29+09:00 info: Connector 'socket-server' started to ready
|
|
13
|
-
2023-06-10T07:03:29+09:00 info: Connector 'msgraph-connector' started to ready
|
|
14
|
-
2023-06-10T07:03:29+09:00 info: Connector 'openai-connector' started to ready
|
|
15
|
-
2023-06-10T07:03:29+09:00 info: echo-back-servers are ready
|
|
16
|
-
2023-06-10T07:03:29+09:00 info: echo-back connections are ready
|
|
17
|
-
2023-06-10T07:03:29+09:00 info: http-connector connections are ready
|
|
18
|
-
2023-06-10T07:03:29+09:00 info: graphql-connector connections are ready
|
|
19
|
-
2023-06-10T07:03:29+09:00 info: sqlite-connector connections are ready
|
|
20
|
-
2023-06-10T07:03:29+09:00 info: postgresql-connector connections are ready
|
|
21
|
-
2023-06-10T07:03:29+09:00 info: mqtt-connector connections are ready
|
|
22
|
-
2023-06-10T07:03:29+09:00 info: mssql-connector connections are ready
|
|
23
|
-
2023-06-10T07:03:29+09:00 info: oracle-connector connections are ready
|
|
24
|
-
2023-06-10T07:03:29+09:00 info: mysql-connector connections are ready
|
|
25
|
-
2023-06-10T07:03:29+09:00 info: socket servers are ready
|
|
26
|
-
2023-06-10T07:03:29+09:00 info: msgraph-connector connections are ready
|
|
27
|
-
2023-06-10T07:03:29+09:00 info: openai-connector connections are ready
|
|
28
|
-
2023-06-10T07:03:29+09:00 info: All connector for 'echo-back-server' ready
|
|
29
|
-
2023-06-10T07:03:29+09:00 info: All connector for 'echo-back' ready
|
|
30
|
-
2023-06-10T07:03:29+09:00 info: All connector for 'http-connector' ready
|
|
31
|
-
2023-06-10T07:03:29+09:00 info: All connector for 'graphql-connector' ready
|
|
32
|
-
2023-06-10T07:03:29+09:00 info: All connector for 'sqlite-connector' ready
|
|
33
|
-
2023-06-10T07:03:29+09:00 info: All connector for 'postgresql-connector' ready
|
|
34
|
-
2023-06-10T07:03:29+09:00 info: All connector for 'mqtt-connector' ready
|
|
35
|
-
2023-06-10T07:03:29+09:00 info: All connector for 'mssql-connector' ready
|
|
36
|
-
2023-06-10T07:03:29+09:00 info: All connector for 'oracle-connector' ready
|
|
37
|
-
2023-06-10T07:03:29+09:00 info: All connector for 'mysql-connector' ready
|
|
38
|
-
2023-06-10T07:03:29+09:00 info: All connector for 'socket-server' ready
|
|
39
|
-
2023-06-10T07:03:29+09:00 info: All connector for 'msgraph-connector' ready
|
|
40
|
-
2023-06-10T07:03:29+09:00 info: All connector for 'openai-connector' ready
|
|
41
|
-
2023-06-10T07:03:29+09:00 info: ConnectionManager initialization done:
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
2023-06-10T18:03:29+09:00 info: Initializing ConnectionManager...
|
|
2
|
-
2023-06-10T18:03:29+09:00 info: Connector 'echo-back-server' started to ready
|
|
3
|
-
2023-06-10T18:03:29+09:00 info: Connector 'echo-back' started to ready
|
|
4
|
-
2023-06-10T18:03:29+09:00 info: Connector 'http-connector' started to ready
|
|
5
|
-
2023-06-10T18:03:29+09:00 info: Connector 'graphql-connector' started to ready
|
|
6
|
-
2023-06-10T18:03:29+09:00 info: Connector 'sqlite-connector' started to ready
|
|
7
|
-
2023-06-10T18:03:29+09:00 info: Connector 'postgresql-connector' started to ready
|
|
8
|
-
2023-06-10T18:03:29+09:00 info: Connector 'mqtt-connector' started to ready
|
|
9
|
-
2023-06-10T18:03:29+09:00 info: Connector 'mssql-connector' started to ready
|
|
10
|
-
2023-06-10T18:03:29+09:00 info: Connector 'oracle-connector' started to ready
|
|
11
|
-
2023-06-10T18:03:29+09:00 info: Connector 'mysql-connector' started to ready
|
|
12
|
-
2023-06-10T18:03:29+09:00 info: Connector 'socket-server' started to ready
|
|
13
|
-
2023-06-10T18:03:29+09:00 info: Connector 'msgraph-connector' started to ready
|
|
14
|
-
2023-06-10T18:03:29+09:00 info: Connector 'openai-connector' started to ready
|
|
15
|
-
2023-06-10T18:03:29+09:00 info: echo-back-servers are ready
|
|
16
|
-
2023-06-10T18:03:29+09:00 info: echo-back connections are ready
|
|
17
|
-
2023-06-10T18:03:29+09:00 info: http-connector connections are ready
|
|
18
|
-
2023-06-10T18:03:29+09:00 info: graphql-connector connections are ready
|
|
19
|
-
2023-06-10T18:03:29+09:00 info: sqlite-connector connections are ready
|
|
20
|
-
2023-06-10T18:03:29+09:00 info: postgresql-connector connections are ready
|
|
21
|
-
2023-06-10T18:03:29+09:00 info: mqtt-connector connections are ready
|
|
22
|
-
2023-06-10T18:03:29+09:00 info: mssql-connector connections are ready
|
|
23
|
-
2023-06-10T18:03:29+09:00 info: oracle-connector connections are ready
|
|
24
|
-
2023-06-10T18:03:29+09:00 info: mysql-connector connections are ready
|
|
25
|
-
2023-06-10T18:03:29+09:00 info: socket servers are ready
|
|
26
|
-
2023-06-10T18:03:29+09:00 info: msgraph-connector connections are ready
|
|
27
|
-
2023-06-10T18:03:29+09:00 info: openai-connector connections are ready
|
|
28
|
-
2023-06-10T18:03:29+09:00 info: All connector for 'echo-back-server' ready
|
|
29
|
-
2023-06-10T18:03:29+09:00 info: All connector for 'echo-back' ready
|
|
30
|
-
2023-06-10T18:03:29+09:00 info: All connector for 'http-connector' ready
|
|
31
|
-
2023-06-10T18:03:29+09:00 info: All connector for 'graphql-connector' ready
|
|
32
|
-
2023-06-10T18:03:29+09:00 info: All connector for 'sqlite-connector' ready
|
|
33
|
-
2023-06-10T18:03:29+09:00 info: All connector for 'postgresql-connector' ready
|
|
34
|
-
2023-06-10T18:03:29+09:00 info: All connector for 'mqtt-connector' ready
|
|
35
|
-
2023-06-10T18:03:29+09:00 info: All connector for 'mssql-connector' ready
|
|
36
|
-
2023-06-10T18:03:29+09:00 info: All connector for 'oracle-connector' ready
|
|
37
|
-
2023-06-10T18:03:29+09:00 info: All connector for 'mysql-connector' ready
|
|
38
|
-
2023-06-10T18:03:29+09:00 info: All connector for 'socket-server' ready
|
|
39
|
-
2023-06-10T18:03:29+09:00 info: All connector for 'msgraph-connector' ready
|
|
40
|
-
2023-06-10T18:03:29+09:00 info: All connector for 'openai-connector' ready
|
|
41
|
-
2023-06-10T18:03:29+09:00 info: ConnectionManager initialization done:
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
2023-06-11T09:19:55+09:00 info: Initializing ConnectionManager...
|
|
2
|
-
2023-06-11T09:19:55+09:00 info: Connector 'echo-back-server' started to ready
|
|
3
|
-
2023-06-11T09:19:55+09:00 info: Connector 'echo-back' started to ready
|
|
4
|
-
2023-06-11T09:19:55+09:00 info: Connector 'http-connector' started to ready
|
|
5
|
-
2023-06-11T09:19:55+09:00 info: Connector 'graphql-connector' started to ready
|
|
6
|
-
2023-06-11T09:19:55+09:00 info: Connector 'sqlite-connector' started to ready
|
|
7
|
-
2023-06-11T09:19:55+09:00 info: Connector 'postgresql-connector' started to ready
|
|
8
|
-
2023-06-11T09:19:55+09:00 info: Connector 'mqtt-connector' started to ready
|
|
9
|
-
2023-06-11T09:19:55+09:00 info: Connector 'mssql-connector' started to ready
|
|
10
|
-
2023-06-11T09:19:55+09:00 info: Connector 'oracle-connector' started to ready
|
|
11
|
-
2023-06-11T09:19:55+09:00 info: Connector 'mysql-connector' started to ready
|
|
12
|
-
2023-06-11T09:19:55+09:00 info: Connector 'socket-server' started to ready
|
|
13
|
-
2023-06-11T09:19:55+09:00 info: Connector 'msgraph-connector' started to ready
|
|
14
|
-
2023-06-11T09:19:55+09:00 info: Connector 'openai-connector' started to ready
|
|
15
|
-
2023-06-11T09:19:55+09:00 info: echo-back-servers are ready
|
|
16
|
-
2023-06-11T09:19:55+09:00 info: echo-back connections are ready
|
|
17
|
-
2023-06-11T09:19:55+09:00 info: http-connector connections are ready
|
|
18
|
-
2023-06-11T09:19:55+09:00 info: graphql-connector connections are ready
|
|
19
|
-
2023-06-11T09:19:55+09:00 info: sqlite-connector connections are ready
|
|
20
|
-
2023-06-11T09:19:55+09:00 info: postgresql-connector connections are ready
|
|
21
|
-
2023-06-11T09:19:55+09:00 info: mqtt-connector connections are ready
|
|
22
|
-
2023-06-11T09:19:55+09:00 info: mssql-connector connections are ready
|
|
23
|
-
2023-06-11T09:19:55+09:00 info: oracle-connector connections are ready
|
|
24
|
-
2023-06-11T09:19:55+09:00 info: mysql-connector connections are ready
|
|
25
|
-
2023-06-11T09:19:55+09:00 info: socket servers are ready
|
|
26
|
-
2023-06-11T09:19:55+09:00 info: msgraph-connector connections are ready
|
|
27
|
-
2023-06-11T09:19:55+09:00 info: openai-connector connections are ready
|
|
28
|
-
2023-06-11T09:19:55+09:00 info: All connector for 'echo-back-server' ready
|
|
29
|
-
2023-06-11T09:19:55+09:00 info: All connector for 'echo-back' ready
|
|
30
|
-
2023-06-11T09:19:55+09:00 info: All connector for 'http-connector' ready
|
|
31
|
-
2023-06-11T09:19:55+09:00 info: All connector for 'graphql-connector' ready
|
|
32
|
-
2023-06-11T09:19:55+09:00 info: All connector for 'sqlite-connector' ready
|
|
33
|
-
2023-06-11T09:19:55+09:00 info: All connector for 'postgresql-connector' ready
|
|
34
|
-
2023-06-11T09:19:55+09:00 info: All connector for 'mqtt-connector' ready
|
|
35
|
-
2023-06-11T09:19:55+09:00 info: All connector for 'mssql-connector' ready
|
|
36
|
-
2023-06-11T09:19:55+09:00 info: All connector for 'oracle-connector' ready
|
|
37
|
-
2023-06-11T09:19:55+09:00 info: All connector for 'mysql-connector' ready
|
|
38
|
-
2023-06-11T09:19:55+09:00 info: All connector for 'socket-server' ready
|
|
39
|
-
2023-06-11T09:19:55+09:00 info: All connector for 'msgraph-connector' ready
|
|
40
|
-
2023-06-11T09:19:55+09:00 info: All connector for 'openai-connector' ready
|
|
41
|
-
2023-06-11T09:19:55+09:00 info: ConnectionManager initialization done:
|