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>
22 lines
No EOL
386 B
Text
22 lines
No EOL
386 B
Text
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.sinIn = sinIn;
|
|
exports.sinInOut = sinInOut;
|
|
exports.sinOut = sinOut;
|
|
var pi = Math.PI,
|
|
halfPi = pi / 2;
|
|
|
|
function sinIn(t) {
|
|
return +t === 1 ? 1 : 1 - Math.cos(t * halfPi);
|
|
}
|
|
|
|
function sinOut(t) {
|
|
return Math.sin(t * halfPi);
|
|
}
|
|
|
|
function sinInOut(t) {
|
|
return (1 - Math.cos(pi * t)) / 2;
|
|
} |