- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs
Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
13 lines
328 B
JavaScript
13 lines
328 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
function default_1(shape) {
|
|
var _a = shape.attr(), x = _a.x, y = _a.y, r = _a.r;
|
|
return {
|
|
x: x - r,
|
|
y: y - r,
|
|
width: r * 2,
|
|
height: r * 2,
|
|
};
|
|
}
|
|
exports.default = default_1;
|
|
//# sourceMappingURL=circle.js.map
|