Back to Popmotion

mix

packages/popcorn/docs/api/utilities/mix.md

8.7.1316 B
Original Source

mix

mix can interpolate between two numbers.

<TOC />

Import

javascript
import { mix } from '@popmotion/popcorn';

Usage

javascript
mix(0, 100, 0.5); // 50
mix(0, 100, 1); // 100
mix(0, 100, 2); // 200

Types

typescript
mix(from: number, to: number, progress: number): number