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>
15 lines
319 B
Text
15 lines
319 B
Text
import {sqrt} from "../math.js";
|
|
|
|
const sqrt3 = sqrt(3);
|
|
|
|
export default {
|
|
draw(context, size) {
|
|
const s = sqrt(size) * 0.6824;
|
|
const t = s / 2;
|
|
const u = (s * sqrt3) / 2; // cos(Math.PI / 6)
|
|
context.moveTo(0, -s);
|
|
context.lineTo(u, t);
|
|
context.lineTo(-u, t);
|
|
context.closePath();
|
|
}
|
|
};
|