Files
esengine/packages/math/src/Vector2.ts

553 lines
13 KiB
TypeScript
Raw Normal View History

feat: 预制体系统与架构改进 (#303) * feat(prefab): 实现预制体系统和编辑器 UX 改进 ## 预制体系统 - 新增 PrefabSerializer: 预制体序列化/反序列化 - 新增 PrefabInstanceComponent: 追踪预制体实例来源和修改 - 新增 PrefabService: 预制体核心服务 - 新增 PrefabLoader: 预制体资产加载器 - 新增预制体命令: Create/Instantiate/Apply/Revert/BreakLink ## 预制体编辑模式 - 支持双击 .prefab 文件进入编辑模式 - 预制体编辑模式工具栏 (保存/退出) - 预制体实例指示器和操作菜单 ## 编辑器 UX 改进 - SceneHierarchy 快捷键: F2 重命名, Ctrl+D 复制, ↑↓ 导航 - 支持双击实体名称内联编辑 - 删除实体时显示子节点数量警告 - 右键菜单添加重命名/复制选项及快捷键提示 - 布局持久化和重置功能 ## Bug 修复 - 修复 editor-runtime 组件类重复导致的 TransformComponent 不识别问题 - 修复 .prefab-name 样式覆盖导致预制体工具栏文字不可见 - 修复 Inspector 资源字段高度不正确问题 * feat(editor): 改进编辑器 UX 交互体验 - ContentBrowser: 加载动画 spinner、搜索高亮、改进空状态设计 - SceneHierarchy: 选中项自动滚动到视图、搜索清除按钮 - PropertyInspector: 输入框本地状态管理、Enter/Escape 键处理 - EntityInspector: 组件折叠状态持久化、属性搜索清除按钮 - Viewport: 变换操作实时数值显示 - 国际化: 添加相关文本 (en/zh) * fix(build): 修复 Web 构建资产加载和编辑器 UX 改进 构建系统修复: - 修复 asset-catalog.json 字段名不匹配 (entries vs assets) - 修复 BrowserFileSystemService 支持两种目录格式 - 修复 bundle 策略检测逻辑 (空对象判断) - 修复 module.json 中 assetExtensions 声明和类型推断 行为树修复: - 修复 BehaviorTreeExecutionSystem 使用 loadAsset 替代 loadAssetByPath - 修复 BehaviorTreeAssetType 常量与 module.json 类型名一致 (behavior-tree) 编辑器 UX 改进: - 构建完成对话框添加"打开文件夹"按钮 - 构建完成对话框样式优化 (圆形图标背景、按钮布局) - SceneHierarchy 响应式布局 (窄窗口自动隐藏 Type 列) - SceneHierarchy 隐藏滚动条 错误追踪: - 添加全局错误处理器写入日志文件 (%TEMP%/esengine-editor-crash.log) - 添加 append_to_log Tauri 命令 * feat(render): 修复 UI 渲染和点击特效系统 ## UI 渲染修复 - 修复 GUID 验证 bug,使用统一的 isValidGUID() 函数 - 修复 UI 渲染顺序随机问题,Rust 端使用 IndexMap 替代 HashMap - Web 运行时添加 assetPathResolver 支持 GUID 解析 - UIInteractableComponent.blockEvents 默认值改为 false ## 点击特效系统 - 新增 ClickFxComponent 和 ClickFxSystem - 支持在点击位置播放粒子效果 - 支持多种触发模式和粒子轮换 ## Camera 系统重构 - CameraSystem 从 ecs-engine-bindgen 移至 camera 包 - 新增 CameraManager 统一管理相机 ## 编辑器改进 - 改进属性面板 UI 交互 - 粒子编辑器面板优化 - Transform 命令系统 * feat(render): 实现 Sorting Layer 系统和 Overlay 渲染层 - 新增 SortingLayerManager 管理排序层级 (Background, Default, Foreground, UI, Overlay) - 实现 ISortable 接口,统一 Sprite、UI、Particle 的排序属性 - 修复粒子 Overlay 层被 UI 遮挡问题:添加独立的 Overlay Pass 在 UI 之后渲染 - 更新粒子资产格式:从 sortingOrder 改为 sortingLayer + orderInLayer - 更新粒子编辑器面板支持新的排序属性 - 优化 UI 渲染系统使用新的排序层级 * feat(ci): 集成 SignPath 代码签名服务 - 添加 SignPath 自动签名工作流(Windows) - 配置 release-editor.yml 支持代码签名 - 将构建改为草稿模式,等待签名完成后发布 - 添加证书文件到 .gitignore 防止泄露 * fix(asset): 修复 Web 构建资产路径解析和全局单例移除 ## 资产路径修复 - 修复 Tauri 本地服务器 `/asset?path=...` 路径解析,正确与 root 目录连接 - BrowserPathResolver 支持两种模式: - 'proxy': 使用 /asset?path=... 格式(编辑器 Run in Browser) - 'direct': 使用直接路径 /assets/path.png(独立 Web 构建) - BrowserRuntime 使用 'direct' 模式,无需 Tauri 代理 ## 架构改进 - 移除全局单例 - 移除 globalAssetManager 导出,改用 AssetManagerToken 依赖注入 - 移除 globalPathResolver 导出,改用 PathResolutionService - 移除 globalPathResolutionService 导出 - ParticleUpdateSystem/ClickFxSystem 通过 setAssetManager() 注入依赖 - EngineService 使用 new AssetManager() 替代全局实例 ## 新增服务 - PathResolutionService: 统一路径解析接口 - RuntimeModeService: 运行时模式查询服务 - SerializationContext: EntityRef 序列化上下文 ## 其他改进 - 完善 ServiceToken 注释说明本地定义的意图 - 导出 BrowserPathResolveMode 类型 * fix(build): 添加 world-streaming composite 设置修复类型检查 * fix(build): 移除 world-streaming 引用避免 composite 冲突 * fix(build): 将 const enum 改为 enum 兼容 isolatedModules * fix(build): 添加缺失的 IAssetManager 导入
2025-12-13 19:44:08 +08:00
/**
* 2D
*
*
* Lightweight data structure for component properties and serialization.
*/
export interface IVector2 {
x: number;
y: number;
}
2025-08-10 16:00:02 +08:00
/**
* 2D向量类
*
2025-08-10 16:00:02 +08:00
* 2D向量运算功能
* -
* -
* -
* -
*/
feat: 预制体系统与架构改进 (#303) * feat(prefab): 实现预制体系统和编辑器 UX 改进 ## 预制体系统 - 新增 PrefabSerializer: 预制体序列化/反序列化 - 新增 PrefabInstanceComponent: 追踪预制体实例来源和修改 - 新增 PrefabService: 预制体核心服务 - 新增 PrefabLoader: 预制体资产加载器 - 新增预制体命令: Create/Instantiate/Apply/Revert/BreakLink ## 预制体编辑模式 - 支持双击 .prefab 文件进入编辑模式 - 预制体编辑模式工具栏 (保存/退出) - 预制体实例指示器和操作菜单 ## 编辑器 UX 改进 - SceneHierarchy 快捷键: F2 重命名, Ctrl+D 复制, ↑↓ 导航 - 支持双击实体名称内联编辑 - 删除实体时显示子节点数量警告 - 右键菜单添加重命名/复制选项及快捷键提示 - 布局持久化和重置功能 ## Bug 修复 - 修复 editor-runtime 组件类重复导致的 TransformComponent 不识别问题 - 修复 .prefab-name 样式覆盖导致预制体工具栏文字不可见 - 修复 Inspector 资源字段高度不正确问题 * feat(editor): 改进编辑器 UX 交互体验 - ContentBrowser: 加载动画 spinner、搜索高亮、改进空状态设计 - SceneHierarchy: 选中项自动滚动到视图、搜索清除按钮 - PropertyInspector: 输入框本地状态管理、Enter/Escape 键处理 - EntityInspector: 组件折叠状态持久化、属性搜索清除按钮 - Viewport: 变换操作实时数值显示 - 国际化: 添加相关文本 (en/zh) * fix(build): 修复 Web 构建资产加载和编辑器 UX 改进 构建系统修复: - 修复 asset-catalog.json 字段名不匹配 (entries vs assets) - 修复 BrowserFileSystemService 支持两种目录格式 - 修复 bundle 策略检测逻辑 (空对象判断) - 修复 module.json 中 assetExtensions 声明和类型推断 行为树修复: - 修复 BehaviorTreeExecutionSystem 使用 loadAsset 替代 loadAssetByPath - 修复 BehaviorTreeAssetType 常量与 module.json 类型名一致 (behavior-tree) 编辑器 UX 改进: - 构建完成对话框添加"打开文件夹"按钮 - 构建完成对话框样式优化 (圆形图标背景、按钮布局) - SceneHierarchy 响应式布局 (窄窗口自动隐藏 Type 列) - SceneHierarchy 隐藏滚动条 错误追踪: - 添加全局错误处理器写入日志文件 (%TEMP%/esengine-editor-crash.log) - 添加 append_to_log Tauri 命令 * feat(render): 修复 UI 渲染和点击特效系统 ## UI 渲染修复 - 修复 GUID 验证 bug,使用统一的 isValidGUID() 函数 - 修复 UI 渲染顺序随机问题,Rust 端使用 IndexMap 替代 HashMap - Web 运行时添加 assetPathResolver 支持 GUID 解析 - UIInteractableComponent.blockEvents 默认值改为 false ## 点击特效系统 - 新增 ClickFxComponent 和 ClickFxSystem - 支持在点击位置播放粒子效果 - 支持多种触发模式和粒子轮换 ## Camera 系统重构 - CameraSystem 从 ecs-engine-bindgen 移至 camera 包 - 新增 CameraManager 统一管理相机 ## 编辑器改进 - 改进属性面板 UI 交互 - 粒子编辑器面板优化 - Transform 命令系统 * feat(render): 实现 Sorting Layer 系统和 Overlay 渲染层 - 新增 SortingLayerManager 管理排序层级 (Background, Default, Foreground, UI, Overlay) - 实现 ISortable 接口,统一 Sprite、UI、Particle 的排序属性 - 修复粒子 Overlay 层被 UI 遮挡问题:添加独立的 Overlay Pass 在 UI 之后渲染 - 更新粒子资产格式:从 sortingOrder 改为 sortingLayer + orderInLayer - 更新粒子编辑器面板支持新的排序属性 - 优化 UI 渲染系统使用新的排序层级 * feat(ci): 集成 SignPath 代码签名服务 - 添加 SignPath 自动签名工作流(Windows) - 配置 release-editor.yml 支持代码签名 - 将构建改为草稿模式,等待签名完成后发布 - 添加证书文件到 .gitignore 防止泄露 * fix(asset): 修复 Web 构建资产路径解析和全局单例移除 ## 资产路径修复 - 修复 Tauri 本地服务器 `/asset?path=...` 路径解析,正确与 root 目录连接 - BrowserPathResolver 支持两种模式: - 'proxy': 使用 /asset?path=... 格式(编辑器 Run in Browser) - 'direct': 使用直接路径 /assets/path.png(独立 Web 构建) - BrowserRuntime 使用 'direct' 模式,无需 Tauri 代理 ## 架构改进 - 移除全局单例 - 移除 globalAssetManager 导出,改用 AssetManagerToken 依赖注入 - 移除 globalPathResolver 导出,改用 PathResolutionService - 移除 globalPathResolutionService 导出 - ParticleUpdateSystem/ClickFxSystem 通过 setAssetManager() 注入依赖 - EngineService 使用 new AssetManager() 替代全局实例 ## 新增服务 - PathResolutionService: 统一路径解析接口 - RuntimeModeService: 运行时模式查询服务 - SerializationContext: EntityRef 序列化上下文 ## 其他改进 - 完善 ServiceToken 注释说明本地定义的意图 - 导出 BrowserPathResolveMode 类型 * fix(build): 添加 world-streaming composite 设置修复类型检查 * fix(build): 移除 world-streaming 引用避免 composite 冲突 * fix(build): 将 const enum 改为 enum 兼容 isolatedModules * fix(build): 添加缺失的 IAssetManager 导入
2025-12-13 19:44:08 +08:00
export class Vector2 implements IVector2 {
/** X分量 */
public x: number;
2025-08-10 16:00:02 +08:00
/** Y分量 */
public y: number;
/**
2025-08-10 16:00:02 +08:00
* 2D向量
* @param x X分量0
* @param y Y分量0
*/
constructor(x: number = 0, y: number = 0) {
this.x = x;
this.y = y;
}
// 静态常量
/** 零向量 (0, 0) */
static readonly ZERO = new Vector2(0, 0);
/** 单位向量 (1, 1) */
static readonly ONE = new Vector2(1, 1);
/** 右方向向量 (1, 0) */
static readonly RIGHT = new Vector2(1, 0);
/** 左方向向量 (-1, 0) */
static readonly LEFT = new Vector2(-1, 0);
/** 上方向向量 (0, 1) */
static readonly UP = new Vector2(0, 1);
/** 下方向向量 (0, -1) */
static readonly DOWN = new Vector2(0, -1);
// 基础属性
/**
2025-08-10 16:00:02 +08:00
*
*/
get length(): number {
return Math.sqrt(this.x * this.x + this.y * this.y);
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
*/
get lengthSquared(): number {
return this.x * this.x + this.y * this.y;
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
*/
get angle(): number {
return Math.atan2(this.y, this.x);
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
*/
get isZero(): boolean {
return this.x === 0 && this.y === 0;
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
*/
get isUnit(): boolean {
const lenSq = this.lengthSquared;
return Math.abs(lenSq - 1) < Number.EPSILON;
}
2025-08-10 16:00:02 +08:00
// 基础运算
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param x X分量
* @param y Y分量
* @returns
*/
set(x: number, y: number): this {
this.x = x;
this.y = y;
return this;
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param other
* @returns
*/
copy(other: Vector2): this {
this.x = other.x;
this.y = other.y;
return this;
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @returns
*/
clone(): Vector2 {
return new Vector2(this.x, this.y);
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param other
* @returns
*/
add(other: Vector2): this {
this.x += other.x;
this.y += other.y;
return this;
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param other
* @returns
*/
subtract(other: Vector2): this {
this.x -= other.x;
this.y -= other.y;
return this;
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param scalar
* @returns
*/
multiply(scalar: number): this {
this.x *= scalar;
this.y *= scalar;
return this;
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param scalar
* @returns
*/
divide(scalar: number): this {
if (scalar === 0) {
throw new Error('不能除以零');
}
this.x /= scalar;
this.y /= scalar;
return this;
2025-08-10 16:00:02 +08:00
}
/**
2025-08-10 16:00:02 +08:00
*
* @returns
*/
negate(): this {
this.x = -this.x;
this.y = -this.y;
return this;
}
2025-08-10 16:00:02 +08:00
// 向量运算
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param other
* @returns
*/
dot(other: Vector2): number {
return this.x * other.x + this.y * other.y;
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
* 2D中返回标量
* @param other
* @returns
*/
cross(other: Vector2): number {
return this.x * other.y - this.y * other.x;
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @returns
*/
normalize(): this {
const len = this.length;
if (len === 0) {
return this;
}
return this.divide(len);
2025-08-10 16:00:02 +08:00
}
/**
2025-08-10 16:00:02 +08:00
*
* @returns
*/
normalized(): Vector2 {
return this.clone().normalize();
}
2025-08-10 16:00:02 +08:00
// 几何运算
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param other
* @returns
*/
distanceTo(other: Vector2): number {
const dx = this.x - other.x;
const dy = this.y - other.y;
return Math.sqrt(dx * dx + dy * dy);
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param other
* @returns
*/
distanceToSquared(other: Vector2): number {
const dx = this.x - other.x;
const dy = this.y - other.y;
return dx * dx + dy * dy;
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param other
* @returns 0π
*/
angleTo(other: Vector2): number {
const dot = this.dot(other);
const lenProduct = this.length * other.length;
if (lenProduct === 0) return 0;
return Math.acos(Math.max(-1, Math.min(1, dot / lenProduct)));
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param onto
* @returns
*/
projectOnto(onto: Vector2): Vector2 {
const dot = this.dot(onto);
const lenSq = onto.lengthSquared;
if (lenSq === 0) return new Vector2();
return onto.clone().multiply(dot / lenSq);
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param onto
* @returns
*/
projectOntoLength(onto: Vector2): number {
const len = onto.length;
if (len === 0) return 0;
return this.dot(onto) / len;
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
* 90
* @returns
*/
perpendicular(): Vector2 {
return new Vector2(-this.y, this.x);
}
2025-08-10 16:00:02 +08:00
// 变换操作
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param angle
* @returns
*/
rotate(angle: number): this {
const cos = Math.cos(angle);
const sin = Math.sin(angle);
const x = this.x * cos - this.y * sin;
const y = this.x * sin + this.y * cos;
this.x = x;
this.y = y;
return this;
}
/**
2025-08-10 16:00:02 +08:00
*
* @param angle
* @returns
*/
rotated(angle: number): Vector2 {
return this.clone().rotate(angle);
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param center
* @param angle
* @returns
*/
rotateAround(center: Vector2, angle: number): this {
return this.subtract(center).rotate(angle).add(center);
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
* 线
* @param normal 线
* @returns
*/
reflect(normal: Vector2): this {
const dot = this.dot(normal);
this.x -= 2 * dot * normal.x;
this.y -= 2 * dot * normal.y;
return this;
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param normal 线
* @returns
*/
reflected(normal: Vector2): Vector2 {
return this.clone().reflect(normal);
}
2025-08-10 16:00:02 +08:00
// 插值和限制
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
* 线
* @param target
* @param t 01
* @returns
*/
lerp(target: Vector2, t: number): this {
this.x += (target.x - this.x) * t;
this.y += (target.y - this.y) * t;
return this;
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param maxLength
* @returns
*/
clampLength(maxLength: number): this {
const lenSq = this.lengthSquared;
if (lenSq > maxLength * maxLength) {
return this.normalize().multiply(maxLength);
}
return this;
2025-08-10 16:00:02 +08:00
}
/**
2025-08-10 16:00:02 +08:00
*
* @param min
* @param max
* @returns
*/
clamp(min: Vector2, max: Vector2): this {
this.x = Math.max(min.x, Math.min(max.x, this.x));
this.y = Math.max(min.y, Math.min(max.y, this.y));
return this;
}
2025-08-10 16:00:02 +08:00
// 比较操作
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param other
* @param epsilon Number.EPSILON
* @returns
*/
equals(other: Vector2, epsilon: number = Number.EPSILON): boolean {
return Math.abs(this.x - other.x) < epsilon &&
2025-08-10 16:00:02 +08:00
Math.abs(this.y - other.y) < epsilon;
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param other
* @returns
*/
exactEquals(other: Vector2): boolean {
return this.x === other.x && this.y === other.y;
}
2025-08-10 16:00:02 +08:00
// 静态方法
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param a a
* @param b b
* @returns
*/
static add(a: Vector2, b: Vector2): Vector2 {
return new Vector2(a.x + b.x, a.y + b.y);
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param a a
* @param b b
* @returns
*/
static subtract(a: Vector2, b: Vector2): Vector2 {
return new Vector2(a.x - b.x, a.y - b.y);
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param vector
* @param scalar
* @returns
*/
static multiply(vector: Vector2, scalar: number): Vector2 {
return new Vector2(vector.x * scalar, vector.y * scalar);
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param a a
* @param b b
* @returns
*/
static dot(a: Vector2, b: Vector2): number {
return a.x * b.x + a.y * b.y;
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param a a
* @param b b
* @returns
*/
static cross(a: Vector2, b: Vector2): number {
return a.x * b.y - a.y * b.x;
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param a a
* @param b b
* @returns
*/
static distance(a: Vector2, b: Vector2): number {
const dx = a.x - b.x;
const dy = a.y - b.y;
return Math.sqrt(dx * dx + dy * dy);
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
* 线
* @param a
* @param b
* @param t 01
* @returns
*/
static lerp(a: Vector2, b: Vector2, t: number): Vector2 {
return new Vector2(
a.x + (b.x - a.x) * t,
a.y + (b.y - a.y) * t
);
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param angle
* @returns
*/
static fromAngle(angle: number): Vector2 {
return new Vector2(Math.cos(angle), Math.sin(angle));
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param length
* @param angle
* @returns
*/
static fromPolar(length: number, angle: number): Vector2 {
return new Vector2(length * Math.cos(angle), length * Math.sin(angle));
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param a a
* @param b b
* @returns
*/
static min(a: Vector2, b: Vector2): Vector2 {
return new Vector2(Math.min(a.x, b.x), Math.min(a.y, b.y));
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @param a a
* @param b b
* @returns
*/
static max(a: Vector2, b: Vector2): Vector2 {
return new Vector2(Math.max(a.x, b.x), Math.max(a.y, b.y));
}
2025-08-10 16:00:02 +08:00
// 字符串转换
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @returns
*/
toString(): string {
return `Vector2(${this.x.toFixed(3)}, ${this.y.toFixed(3)})`;
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @returns [x, y]
*/
toArray(): [number, number] {
return [this.x, this.y];
}
2025-08-10 16:00:02 +08:00
/**
2025-08-10 16:00:02 +08:00
*
* @returns {x, y}
*/
toObject(): { x: number; y: number } {
return { x: this.x, y: this.y };
}
}