摘要: 两个向量的点乘积 是 向量a在向量b上的投影的长度 乘以 向量b的长度。 Another very important interpretation is: \(\mathbf{a}\cdot\mathbf{b}=|\mathbf{a}||\mathbf{b}|\cos\theta\) where: 阅读全文
posted @ 2026-05-10 04:49 dewxin 阅读(6) 评论(0) 推荐(0)
摘要: 背景 技能CD加速, 移动加速 方案 首先, 客户端连接服务端时候,需要时间校对。 客户端将自身的时间戳(t客)发送给服务端,服务端收到这个数据包时的时间戳为(t服)。 t客 = 客户端发送数据包时当前的时间戳 t服 = 服务端收到数据包时当前的时间戳 t服-t客 就是 客户端和服务端的时间差 + 阅读全文
posted @ 2026-05-05 21:56 dewxin 阅读(10) 评论(0) 推荐(0)
摘要: 安装SVN sudo apt update sudo apt install subversion 安装 VS Code SVN 插件 打开 VS Code。 进入扩展视图(Ctrl+Shift+X)。 搜索并安装 SVN (作者: JohnstonCode) 或 VSCode SVN - AI智能 阅读全文
posted @ 2026-04-30 15:53 dewxin 阅读(4) 评论(0) 推荐(0)
摘要: 定义 废话不多说,这里先直接给出 Assembly和Module的相关定义。 权威的定义 An assembly is a deployment unit, a building block of a managed application. Assemblies are reusable, all 阅读全文
posted @ 2026-04-27 16:51 dewxin 阅读(11) 评论(0) 推荐(0)
摘要: 按 Ctrl+Shift+P 搜 user settings 出来 Setttings界面后, 再搜 vim.handleKeys "vim.handleKeys": { "<C-a>": false, "<C-c>": false, "<C-v>": false, "<C-x>": false, 阅读全文
posted @ 2026-04-14 19:20 dewxin 阅读(9) 评论(0) 推荐(0)
摘要: 本文由ChatGPT生成 You don’t actually need GLAD specifically—but you do need *something like it when using modern OpenGL. Here’s why. The core problem: Open 阅读全文
posted @ 2026-04-14 15:40 dewxin 阅读(6) 评论(0) 推荐(0)
摘要: 本文由 ChatGPT 生成 Here’s a clean, practical way to set up C/C++ debugging in VS Code on Windows (since you’re using cl.exe and MSVC). 🧰 1. Install requi 阅读全文
posted @ 2026-04-13 01:43 dewxin 阅读(21) 评论(0) 推荐(0)
摘要: 来源: BV1zwXDBBE1m 属性计算 性格修正 = 0 / 0.2 / -0.1 生命 = [ 1.7种族值 + 0.85个体值 + 70 ] * (1+性格修正) + 100 其他属性 = [ 1.1种族值 + 0.55个体值 + 10] * (1+性格修正) + 50 伤害计算 阅读全文
posted @ 2026-04-08 14:03 dewxin 阅读(891) 评论(0) 推荐(0)
摘要: 随着版本的更新,.net平台 已经可以使用dotnet run ./TEST.cs 直接运行单一的C#文件,但有时候我们又想调试代码,这该怎么办呢? 首先,我们需要确定dotnet生成的可执行文件的位置, 这里在linux中可以使用 locate TEST , TEST就是 C#文件的名字。 #:s 阅读全文
posted @ 2026-04-05 14:53 dewxin 阅读(8) 评论(0) 推荐(0)
摘要: Install Mono sudo apt install mono-devel If you built Mono from source and installed into /usr/local, make sure: headers: /usr/local/include/mono-2.0 阅读全文
posted @ 2026-04-02 16:36 dewxin 阅读(5) 评论(0) 推荐(0)