Rocky_Mountain_Vending/.pnpm-store/v10/files/87/c807920d4f34b3e140859cfb077cb15542f4d816ccdc753ce31de261128824513c3b83f51e062ca40926e73572168f8a71caa14594366698171ddfff5251a6
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

16 lines
329 B
Text

import {sqrt} from "../math.js";
const tan30 = sqrt(1 / 3);
const tan30_2 = tan30 * 2;
export default {
draw(context, size) {
const y = sqrt(size / tan30_2);
const x = y * tan30;
context.moveTo(0, -y);
context.lineTo(x, 0);
context.lineTo(0, y);
context.lineTo(-x, 0);
context.closePath();
}
};