diff --git a/examples/index.html b/examples/index.html index 9fc4afa..c09c704 100644 --- a/examples/index.html +++ b/examples/index.html @@ -6,11 +6,9 @@ Example - + - - - + \ No newline at end of file diff --git a/src/geometry.ts b/src/geometry.ts index 8f24a61..82e2c59 100644 --- a/src/geometry.ts +++ b/src/geometry.ts @@ -1,17 +1,38 @@ +import { Vector2D } from "./vector.js" +import * as shape from "./shapes.js" + class Geometry extends HTMLElement { + private canvas: HTMLCanvasElement; + private context: CanvasRenderingContext2D; + constructor() { super(); this.attachShadow({mode: "open"}); + let canvas = document.createElement("canvas"); + canvas.width = 500; + canvas.height = 500; + let context = canvas.getContext("2d"); + context.lineCap = "round"; + context.lineJoin = "round"; + context.strokeStyle = "black"; + context.lineWidth = 1; - console.log("Created Geomtry tag"); - const text = document.createElement("p") - text.innerText = "Geometry tag"; + this.canvas = canvas; + this.context = context; - this.shadowRoot.append(text); + this.shadowRoot.append(this.canvas); + + this.redraw(); + } + + private redraw() + { + shape.line(this.context, new Vector2D(), new Vector2D(300, 300)); + shape.circle(this.context, new Vector2D(150, 150), 100); } } -customElements.define("custom-geometry", Geometry); \ No newline at end of file +customElements.define("geometry-sketch", Geometry); \ No newline at end of file diff --git a/src/shapeStyle.ts b/src/shapeStyle.ts new file mode 100644 index 0000000..174eaab --- /dev/null +++ b/src/shapeStyle.ts @@ -0,0 +1,14 @@ + +export class ShapeStyle +{ + public strokeWidth: number; + public strokeColor: string; + public fillColor: string; + + constructor() + { + this.strokeWidth = 1; + this.strokeColor = '#000000'; + this.fillColor = '#00000000'; + } +} \ No newline at end of file diff --git a/src/shapes.ts b/src/shapes.ts new file mode 100644 index 0000000..29454ff --- /dev/null +++ b/src/shapes.ts @@ -0,0 +1,26 @@ +import { Vector2D } from "./vector.js" +import { ShapeStyle } from "./shapeStyle.js"; + +export function line(ctx: CanvasRenderingContext2D, from: Vector2D , to: Vector2D, style: ShapeStyle = new ShapeStyle()) +{ + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(to.x, to.y); + + ctx.lineWidth = style.strokeWidth; + ctx.strokeStyle = style.strokeColor; + ctx.stroke(); +} + +export function circle(ctx: CanvasRenderingContext2D, center: Vector2D, radius: number, style: ShapeStyle = new ShapeStyle()) +{ + ctx.beginPath(); + ctx.arc(center.x, center.y, radius, 0, 2 * Math.PI, false); + + ctx.fillStyle = style.fillColor; + ctx.fill(); + + ctx.lineWidth = style.strokeWidth; + ctx.strokeStyle = style.strokeColor; + ctx.stroke(); +} \ No newline at end of file diff --git a/src/vector.ts b/src/vector.ts new file mode 100644 index 0000000..699eb8e --- /dev/null +++ b/src/vector.ts @@ -0,0 +1,11 @@ +export class Vector2D +{ + public x: number; + public y: number; + + constructor(x: number = 0, y: number = 0) + { + this.x = x; + this.y = y; + } +} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index f5631ef..90de336 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,8 @@ { "compilerOptions": { "target": "es6", - "outFile": "./out/lauchpioos.js", + // "outFile": "./out/lauchpioos.js", + "outDir": "./out", "sourceRoot": "./src", "rootDir": "./src", "sourceMap": true