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>
59 lines
No EOL
1.3 KiB
Text
59 lines
No EOL
1.3 KiB
Text
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = pow;
|
|
exports.powish = powish;
|
|
exports.sqrt = sqrt;
|
|
|
|
var _linear = require("./linear.js");
|
|
|
|
var _continuous = require("./continuous.js");
|
|
|
|
var _init = require("./init.js");
|
|
|
|
function transformPow(exponent) {
|
|
return function (x) {
|
|
return x < 0 ? -Math.pow(-x, exponent) : Math.pow(x, exponent);
|
|
};
|
|
}
|
|
|
|
function transformSqrt(x) {
|
|
return x < 0 ? -Math.sqrt(-x) : Math.sqrt(x);
|
|
}
|
|
|
|
function transformSquare(x) {
|
|
return x < 0 ? -x * x : x * x;
|
|
}
|
|
|
|
function powish(transform) {
|
|
var scale = transform(_continuous.identity, _continuous.identity),
|
|
exponent = 1;
|
|
|
|
function rescale() {
|
|
return exponent === 1 ? transform(_continuous.identity, _continuous.identity) : exponent === 0.5 ? transform(transformSqrt, transformSquare) : transform(transformPow(exponent), transformPow(1 / exponent));
|
|
}
|
|
|
|
scale.exponent = function (_) {
|
|
return arguments.length ? (exponent = +_, rescale()) : exponent;
|
|
};
|
|
|
|
return (0, _linear.linearish)(scale);
|
|
}
|
|
|
|
function pow() {
|
|
var scale = powish((0, _continuous.transformer)());
|
|
|
|
scale.copy = function () {
|
|
return (0, _continuous.copy)(scale, pow()).exponent(scale.exponent());
|
|
};
|
|
|
|
_init.initRange.apply(scale, arguments);
|
|
|
|
return scale;
|
|
}
|
|
|
|
function sqrt() {
|
|
return pow.apply(null, arguments).exponent(0.5);
|
|
} |