Rocky_Mountain_Vending/.pnpm-store/v10/files/a2/f84bfb850219ddf9b43031e2f5a28cc6ba622e9c41cd4714bf7df104ebc08d54fe0b39d40c032b84b46139bbeb6ff0d556a6db71af212ce3d278c929907b87
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

18 lines
No EOL
333 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 / _math.pi);
context.moveTo(r, 0);
context.arc(0, 0, r, 0, _math.tau);
}
};
exports.default = _default;