Skip to content

Instantly share code, notes, and snippets.

View JoseAP89's full-sized avatar

Jose Alvarez Pumarino JoseAP89

View GitHub Profile
@anupkrbid
anupkrbid / drawing-board.component.ts
Last active August 29, 2023 15:10
A example canvas component for drawing in an angular 6 app using rxjs 6.
import {
AfterViewInit,
Component,
ElementRef,
Input,
OnDestroy,
ViewChild
} from '@angular/core';
import { fromEvent } from 'rxjs';
import { pairwise, switchMap, takeUntil } from 'rxjs/operators';