Rocky_Mountain_Vending/.pnpm-store/v10/files/e6/6a430269deb1d7349dffdb028072830001b022fd742cd358a5f468991223831846c52b633810c3309e8e9ffa2ad8931f31ab2cb914953246e4453f2cc9fa76
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

11 lines
248 B
Text

import {min, sqrt} from "../math.js";
export default {
draw(context, size) {
const r = sqrt(size - min(size / 7, 2)) * 0.87559;
context.moveTo(-r, 0);
context.lineTo(r, 0);
context.moveTo(0, r);
context.lineTo(0, -r);
}
};