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>
108 lines
No EOL
2.5 KiB
Text
108 lines
No EOL
2.5 KiB
Text
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = void 0;
|
|
|
|
var _cardinalClosed = require("./cardinalClosed.js");
|
|
|
|
var _noop = _interopRequireDefault(require("../noop.js"));
|
|
|
|
var _catmullRom = require("./catmullRom.js");
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
function CatmullRomClosed(context, alpha) {
|
|
this._context = context;
|
|
this._alpha = alpha;
|
|
}
|
|
|
|
CatmullRomClosed.prototype = {
|
|
areaStart: _noop.default,
|
|
areaEnd: _noop.default,
|
|
lineStart: function () {
|
|
this._x0 = this._x1 = this._x2 = this._x3 = this._x4 = this._x5 = this._y0 = this._y1 = this._y2 = this._y3 = this._y4 = this._y5 = NaN;
|
|
this._l01_a = this._l12_a = this._l23_a = this._l01_2a = this._l12_2a = this._l23_2a = this._point = 0;
|
|
},
|
|
lineEnd: function () {
|
|
switch (this._point) {
|
|
case 1:
|
|
{
|
|
this._context.moveTo(this._x3, this._y3);
|
|
|
|
this._context.closePath();
|
|
|
|
break;
|
|
}
|
|
|
|
case 2:
|
|
{
|
|
this._context.lineTo(this._x3, this._y3);
|
|
|
|
this._context.closePath();
|
|
|
|
break;
|
|
}
|
|
|
|
case 3:
|
|
{
|
|
this.point(this._x3, this._y3);
|
|
this.point(this._x4, this._y4);
|
|
this.point(this._x5, this._y5);
|
|
break;
|
|
}
|
|
}
|
|
},
|
|
point: function (x, y) {
|
|
x = +x, y = +y;
|
|
|
|
if (this._point) {
|
|
var x23 = this._x2 - x,
|
|
y23 = this._y2 - y;
|
|
this._l23_a = Math.sqrt(this._l23_2a = Math.pow(x23 * x23 + y23 * y23, this._alpha));
|
|
}
|
|
|
|
switch (this._point) {
|
|
case 0:
|
|
this._point = 1;
|
|
this._x3 = x, this._y3 = y;
|
|
break;
|
|
|
|
case 1:
|
|
this._point = 2;
|
|
|
|
this._context.moveTo(this._x4 = x, this._y4 = y);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
this._point = 3;
|
|
this._x5 = x, this._y5 = y;
|
|
break;
|
|
|
|
default:
|
|
(0, _catmullRom.point)(this, x, y);
|
|
break;
|
|
}
|
|
|
|
this._l01_a = this._l12_a, this._l12_a = this._l23_a;
|
|
this._l01_2a = this._l12_2a, this._l12_2a = this._l23_2a;
|
|
this._x0 = this._x1, this._x1 = this._x2, this._x2 = x;
|
|
this._y0 = this._y1, this._y1 = this._y2, this._y2 = y;
|
|
}
|
|
};
|
|
|
|
var _default = function custom(alpha) {
|
|
function catmullRom(context) {
|
|
return alpha ? new CatmullRomClosed(context, alpha) : new _cardinalClosed.CardinalClosed(context, 0);
|
|
}
|
|
|
|
catmullRom.alpha = function (alpha) {
|
|
return custom(+alpha);
|
|
};
|
|
|
|
return catmullRom;
|
|
}(0.5);
|
|
|
|
exports.default = _default; |