jsketcher/web/app/sketcher/shapes/draw-utils.js
2016-11-29 22:48:16 -08:00

12 lines
309 B
JavaScript

export function DrawPoint(ctx, x, y, rad, scale) {
ctx.beginPath();
ctx.arc(x, y, rad / scale, 0, 2 * Math.PI, false);
ctx.fill();
}
export function SetStyle(style, ctx, scale) {
ctx.lineWidth = style.lineWidth / scale;
ctx.strokeStyle = style.strokeStyle;
ctx.fillStyle = style.fillStyle;
}