Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/remapper/src/deps.ts>three.ShapePath

A framework for Beat Saber map scripting.
Go to Latest
class three.ShapePath
import { three } from "https://deno.land/x/remapper@2.1.0/src/deps.ts";
const { ShapePath } = three;

Constructors

new
ShapePath()

Properties

color: Color
currentPath: any
subPaths: any[]
type: string

Methods

bezierCurveTo(
aCP1x: number,
aCP1y: number,
aCP2x: number,
aCP2y: number,
aX: number,
aY: number,
): this
lineTo(x: number, y: number): this
moveTo(x: number, y: number): this
quadraticCurveTo(
aCPx: number,
aCPy: number,
aX: number,
aY: number,
): this
splineThru(pts: Vector2[]): this
toShapes(isCCW: boolean, noHoles?: boolean): Shape[]