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,8 @@
export var 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,8 @@
export var 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: []
};