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

Path

import { Path } from "https://cdn.skypack.dev/d3@7.8.1";
class Path {
constructor(digits);
arc(
x,
y,
r,
a0,
a1,
ccw,
);
arcTo(
x1,
y1,
x2,
y2,
r,
);
bezierCurveTo(
x1,
y1,
x2,
y2,
x,
y,
);
closePath();
lineTo(x, y);
moveTo(x, y);
quadraticCurveTo(
x1,
y1,
x,
y,
);
rect(
x,
y,
w,
h,
);
toString();
}

§Constructors

§
new Path(digits)
[src]

§Methods

§
arc(x, y, r, a0, a1, ccw)
[src]
§
arcTo(x1, y1, x2, y2, r)
[src]
§
bezierCurveTo(x1, y1, x2, y2, x, y)
[src]
§
closePath()
[src]
§
lineTo(x, y)
[src]
§
moveTo(x, y)
[src]
§
quadraticCurveTo(x1, y1, x, y)
[src]
§
rect(x, y, w, h)
[src]
§
toString()
[src]