UNPKG

ts-useful

Version:

Functions for animation, color transitions, ecliptic, bezier, decasteljau, curves, three dimensional curves, smooth scrolling, random range, randomItem, mobius index, vectors, physics vectors, and easing.

12 lines (11 loc) 258 B
import { coordinate } from '../types/coordinate'; export type attractorPartial = { position: coordinate; radius?: number; force?: number; }; export type attractor = { position: coordinate; radius: number; force: number; };