Files
wehub-resource-sync 9b395f5cc3
E2E Headed Chrome / e2e-headed (macos-15) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (ubuntu-latest) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (windows-latest) (push) Has been cancelled
CI / build (macos-latest) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
CI / unit-test (push) Has been cancelled
CI / bun-test (push) Has been cancelled
CI / adapter-test (push) Has been cancelled
CI / smoke-test (macos-latest) (push) Has been cancelled
CI / smoke-test (ubuntu-latest) (push) Has been cancelled
Security Audit / audit (push) Has been cancelled
Build Chrome Extension / build (push) Has been cancelled
Trigger Website Rebuild (Docs Updated) / dispatch (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:39:48 +08:00

63 lines
2.5 KiB
JavaScript

import { cli, Strategy } from '@jackwener/opencli/registry';
import { CommandExecutionError } from '@jackwener/opencli/errors';
import os from 'node:os';
import path from 'node:path';
import { ensureApplet, ggbEval, ggbListObjects, ggbWaitForObjectCount, normalizeNumber, requireGgbSuccess } from './utils.js';
/**
* Draw a regular hexagon on the GeoGebra Geometry canvas.
* Creates center point, vertex, and the regular polygon in one session.
*/
cli({
site: 'geogebra',
name: 'hexagon',
access: 'write',
description: 'Draw a regular hexagon centered at the origin',
domain: 'www.geogebra.org',
strategy: Strategy.PUBLIC,
browser: true,
navigateBefore: false,
example: 'opencli geogebra hexagon --size 3',
args: [
{ name: 'size', required: false, default: '2', help: 'Radius of the hexagon (default: 2)' },
],
columns: ['step', 'result'],
func: async (page, kwargs) => {
const size = normalizeNumber(kwargs.size, 'size', { defaultValue: 2, positive: true });
await ensureApplet(page);
const results = [];
const vertices = [
['V1', `(${size},0)`],
['V2', `(${size}*cos(pi/3),${size}*sin(pi/3))`],
['V3', `(${size}*cos(2*pi/3),${size}*sin(2*pi/3))`],
['V4', `(-${size},0)`],
['V5', `(${size}*cos(4*pi/3),${size}*sin(4*pi/3))`],
['V6', `(${size}*cos(5*pi/3),${size}*sin(5*pi/3))`],
];
for (const [name, coords] of vertices) {
const result = requireGgbSuccess(await ggbEval(page, `${name}=${coords}`), `Failed to create point ${name}`);
results.push({ step: `${name}=${coords}`, result: `ok (${result.label || name})` });
}
const polygon = requireGgbSuccess(await ggbEval(page, 'Hexagon=Polygon(V1,V2,V3,V4,V5,V6)'), 'Failed to create hexagon polygon');
results.push({ step: 'Hexagon=Polygon(V1,V2,V3,V4,V5,V6)', result: `ok (${polygon.label || 'hexagon created'})` });
const objectCount = await ggbWaitForObjectCount(page, 7);
const objects = await ggbListObjects(page);
const screenshotPath = path.join(os.tmpdir(), 'opencli-geogebra-hexagon.png');
try {
await page.screenshot({ path: screenshotPath });
} catch (err) {
throw new CommandExecutionError(`Failed to capture GeoGebra screenshot: ${err?.message || err}`);
}
if (Array.isArray(objects) && objects.length > 0) {
results.push({ step: `canvas has ${objectCount} objects`, result: objects.map(o => `${o.name}(${o.type})`).join(', ') });
}
results.push({ step: 'screenshot', result: screenshotPath });
return results;
},
});