游戏开发入门指引
摘要:
推荐课程 底层向 GAMES 101/202... + openGL迷你渲染器tinyRender + 补充笔记 【双语】【TheCherno】游戏引擎 笔记 旋转是特殊的剪切 blender Lesson 3 变换矩阵 模拟 L3.blend.zip,记得去掉.zip后打开 ui_L3.py备份,
python taichi 加速 dither仿色抖动算法
摘要:
教程 9种dither算法与历史发展 最开始是如何生成bayer矩阵 wiki: bayer有序抖动 python生成任意规模bayer矩阵 知乎:dither启发的艺术效果,半调/柱形 taichi ndarray文档 CSDN dither算法 理解bayer矩阵 因为bayer矩阵要平铺,所以
线性方程组 入门概念
摘要:
解释如下概念 入门对比 齐次vs非齐次 线性vs非线性 微分vs求导vs积分 方程组vs矩阵乘法 齐次线性方程组 永远存在零解 基础解系vs通解 存在非零解↔︎A不满秩 r(A) + len(η) = len(x) (x的列有多长) 非齐次也适用,因为有解时rA=r(A|b),A仍然是系数矩阵 非齐
Temple OS源码研究
摘要:
博客:源码解读 TOS源码: https://github.com/cia-foundation/TempleOS 启动过程: https://minexew.github.io/2020/02/27/templeos-loader-part1.html 建设性看法:http://www.coder
配置adguard home
摘要:
53端口冲突 解决:adguard使用别的端口,如54 sudo lsof -i :53 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME dnsmasq 1664 lxc-dnsmasq 6u IPv4 16640 0t0 UDP DESKTOP
python 浅拷贝、深拷贝坑
摘要:
今天在写python脚本,发现 I=[[0,0],[0,0]] a=I.copy() a[0][0]=1 print(a,I) 结果: [[1, 0], [0, 0]] [[1, 0], [0, 0]] 因为copy()拷贝得还不够深 解决方法 import copy import copy a =
各类常用镜像加速配置
摘要:
~/.cargo/config.toml [source.crates-io] registry = "https://github.com/rust-lang/crates.io-index" replace-with = 'fast' [source.tuna] registry = "http
Safari Webkit, NotAllowedError: The request is not allowed
摘要:
使用tauri v2,跑前后端项目学习时,遇到这条报错: Unhandled Promise Rejection: NotAllowedError: The request is not allowed by the user agent or the platform in the current
GM_registerMenuCommand()注册菜单模板,TemperMonkey油猴脚本开发
摘要:
注册菜单 点击事件 注册实例 设置默认值 将handle(手握实例的变量)赋值给一个变量 function menu_Func_click() { GM_setValue('Func', !GM_getValue('Func')); // 开关 GM_unregisterMenuCommand(me
重启后,idea 依赖爆红
摘要:
没改动代码,但无法运行java项目 java: -source 1.5 中不支持……表达式/运算符 java: 错误: 不支持发行版本 5 解决:https://www.cnblogs.com/liu-han/p/16105953.html 文件→项目结构,SDK和项目/模块 语言级别的版本要一致