feat:node-modules

This commit is contained in:
houjunxiang
2025-11-24 10:26:18 +08:00
parent 753766893b
commit 8a3e48d856
8825 changed files with 567399 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.distanceDocs = void 0;
const distanceDocs = exports.distanceDocs = {
name: 'distance',
category: 'Geometry',
syntax: ['distance([x1, y1], [x2, y2])', 'distance([[x1, y1], [x2, y2]])'],
description: 'Calculates the Euclidean distance between two points.',
examples: ['distance([0,0], [4,4])', 'distance([[0,0], [4,4]])'],
seealso: []
};

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.intersectDocs = void 0;
const intersectDocs = exports.intersectDocs = {
name: 'intersect',
category: 'Geometry',
syntax: ['intersect(expr1, expr2, expr3, expr4)', 'intersect(expr1, expr2, expr3)'],
description: 'Computes the intersection point of lines and/or planes.',
examples: ['intersect([0, 0], [10, 10], [10, 0], [0, 10])', 'intersect([1, 0, 1], [4, -2, 2], [1, 1, 1, 6])'],
seealso: []
};