Rocky_Mountain_Vending/.pnpm-store/v10/files/8d/4a146b292837e6968182032575a01af004667ee1e9ec5396be49f05f3b4cd5a368bf1cdd9ad419900540718d70442a184b288341548846db31a42127fa56d1
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

4 lines
152 B
Text

// tpmt is two power minus ten times t scaled to [0,1]
export function tpmt(x) {
return (Math.pow(2, -10 * x) - 0.0009765625) * 1.0009775171065494;
}