更新版本

This commit is contained in:
ChenX
2025-04-10 15:53:49 +08:00
parent b08fc5ee5e
commit a29566e9b4
43 changed files with 851 additions and 164 deletions

View File

@@ -9,7 +9,12 @@ export declare namespace BufferGeometryUtils {
* @returns 当成功时返回true,更新失败时返回false
*/
function UpdatePts(geo: BufferGeometry, pts: Vector3[], ignoreBoxError?: boolean): boolean;
/** 在标注箭头上使用(端点为一个箭头) */
function ArrowGeometry(): ShapeGeometry;
/** 在标注箭头上使用(端点为一个圆点) */
function PointGeometry(): ShapeGeometry;
/** 在标注箭头上使用(端点为一条斜线) */
function LineGeometry(): ShapeGeometry;
function MergeBufferGeometries(geometries: BufferGeometry[], useGroups?: boolean): BufferGeometry;
function MergeBufferAttributes(attributes: BufferAttribute[]): BufferAttribute;
}