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>
45 lines
No EOL
957 B
Text
45 lines
No EOL
957 B
Text
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.curveRadialLinear = void 0;
|
|
exports.default = curveRadial;
|
|
|
|
var _linear = _interopRequireDefault(require("./linear.js"));
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
var curveRadialLinear = curveRadial(_linear.default);
|
|
exports.curveRadialLinear = curveRadialLinear;
|
|
|
|
function Radial(curve) {
|
|
this._curve = curve;
|
|
}
|
|
|
|
Radial.prototype = {
|
|
areaStart: function () {
|
|
this._curve.areaStart();
|
|
},
|
|
areaEnd: function () {
|
|
this._curve.areaEnd();
|
|
},
|
|
lineStart: function () {
|
|
this._curve.lineStart();
|
|
},
|
|
lineEnd: function () {
|
|
this._curve.lineEnd();
|
|
},
|
|
point: function (a, r) {
|
|
this._curve.point(r * Math.sin(a), r * -Math.cos(a));
|
|
}
|
|
};
|
|
|
|
function curveRadial(curve) {
|
|
function radial(context) {
|
|
return new Radial(curve(context));
|
|
}
|
|
|
|
radial._curve = curve;
|
|
return radial;
|
|
} |