Skip to main content
Module

x/canvas/mod.ts>PathEffectFactory

Canvas API for Deno, ported from canvaskit-wasm (Skia).
Latest
interface PathEffectFactory
import { type PathEffectFactory } from "https://deno.land/x/canvas@v1.4.1/mod.ts";

See SkPathEffect.h for more details.

Methods

MakeCorner(radius: number): PathEffect | null

Returns a PathEffect that can turn sharp corners into rounded corners.

MakeDash(intervals: number[], phase?: number): PathEffect

Returns a PathEffect that add dashes to the path.

See SkDashPathEffect.h for more details.

MakeDiscrete(
segLength: number,
dev: number,
seedAssist: number,
): PathEffect

Returns a PathEffect that breaks path into segments of segLength length, and randomly move the endpoints away from the original path by a maximum of deviation.