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>
63 lines
No EOL
2.8 KiB
Text
63 lines
No EOL
2.8 KiB
Text
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = _default;
|
|
|
|
var _constant = _interopRequireDefault(require("./constant"));
|
|
|
|
var _point = require("./point");
|
|
|
|
var _Diagram = _interopRequireWildcard(require("./Diagram"));
|
|
|
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
|
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
function _default() {
|
|
var x = _point.x,
|
|
y = _point.y,
|
|
extent = null;
|
|
|
|
function voronoi(data) {
|
|
return new _Diagram.default(data.map(function (d, i) {
|
|
var s = [Math.round(x(d, i, data) / _Diagram.epsilon) * _Diagram.epsilon, Math.round(y(d, i, data) / _Diagram.epsilon) * _Diagram.epsilon];
|
|
s.index = i;
|
|
s.data = d;
|
|
return s;
|
|
}), extent);
|
|
}
|
|
|
|
voronoi.polygons = function (data) {
|
|
return voronoi(data).polygons();
|
|
};
|
|
|
|
voronoi.links = function (data) {
|
|
return voronoi(data).links();
|
|
};
|
|
|
|
voronoi.triangles = function (data) {
|
|
return voronoi(data).triangles();
|
|
};
|
|
|
|
voronoi.x = function (_) {
|
|
return arguments.length ? (x = typeof _ === "function" ? _ : (0, _constant.default)(+_), voronoi) : x;
|
|
};
|
|
|
|
voronoi.y = function (_) {
|
|
return arguments.length ? (y = typeof _ === "function" ? _ : (0, _constant.default)(+_), voronoi) : y;
|
|
};
|
|
|
|
voronoi.extent = function (_) {
|
|
return arguments.length ? (extent = _ == null ? null : [[+_[0][0], +_[0][1]], [+_[1][0], +_[1][1]]], voronoi) : extent && [[extent[0][0], extent[0][1]], [extent[1][0], extent[1][1]]];
|
|
};
|
|
|
|
voronoi.size = function (_) {
|
|
return arguments.length ? (extent = _ == null ? null : [[0, 0], [+_[0], +_[1]]], voronoi) : extent && [extent[1][0] - extent[0][0], extent[1][1] - extent[0][1]];
|
|
};
|
|
|
|
return voronoi;
|
|
} |