Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ZoomView

Type zoomView is used to represent a numeric array with three elements. In order of appearance the elements correspond to:

  • cx: x-coordinate of the center of the viewport
  • cy: y-coordinate of the center of the viewport
  • width: size of the viewport
type ZoomView = [number, number, number];

§Type

§
[number, number, number]
[src]