Rocky_Mountain_Vending/.pnpm-store/v10/files/b2/8fd2c6784247f0d1f9708d386ac4fb4bf1a6fb6bf495c7fc12e25027fa74b5432871129166f5decca12e5c11ef974b9991f055684dff7b50ca0c7c23358cf7
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

21 lines
No EOL
397 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.62625;
context.moveTo(0, -r);
context.lineTo(r, 0);
context.lineTo(0, r);
context.lineTo(-r, 0);
context.closePath();
}
};
exports.default = _default;