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>
21 lines
No EOL
398 B
Text
21 lines
No EOL
398 B
Text
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = void 0;
|
|
|
|
var _math = require("../math.js");
|
|
|
|
var _default = {
|
|
draw(context, size) {
|
|
const r = (0, _math.sqrt)(size) * 0.4431;
|
|
context.moveTo(r, r);
|
|
context.lineTo(r, -r);
|
|
context.lineTo(-r, -r);
|
|
context.lineTo(-r, r);
|
|
context.closePath();
|
|
}
|
|
|
|
};
|
|
exports.default = _default; |