Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
13 lines
233 B
Text
13 lines
233 B
Text
import {tpmt} from "./math.js";
|
|
|
|
export function expIn(t) {
|
|
return tpmt(1 - +t);
|
|
}
|
|
|
|
export function expOut(t) {
|
|
return 1 - tpmt(t);
|
|
}
|
|
|
|
export function expInOut(t) {
|
|
return ((t *= 2) <= 1 ? tpmt(1 - t) : 2 - tpmt(t - 1)) / 2;
|
|
}
|