摘要: 点解答错误里的添加到测试用例 阅读全文
posted @ 2025-02-11 11:37 流星曳尾 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 贝塞尔曲线 https://blog.csdn.net/e295166319/article/details/120363777 阅读全文
posted @ 2025-01-20 19:22 流星曳尾 阅读(4) 评论(0) 推荐(0) 编辑
摘要: // Learn TypeScript: // - https://docs.cocos.com/creator/manual/en/scripting/typescript.html (https://docs.cocos.com/creator/2.4/manual/en/scripting/t 阅读全文
posted @ 2024-12-23 11:37 流星曳尾 阅读(8) 评论(0) 推荐(0) 编辑
摘要: /** * Returns the index of the first occurrence of a value in an array, or -1 if it is not present. * @param searchElement The value to locate in the 阅读全文
posted @ 2024-12-18 15:07 流星曳尾 阅读(4) 评论(0) 推荐(0) 编辑
摘要: clearTracks也删不掉 阅读全文
posted @ 2024-12-17 15:08 流星曳尾 阅读(9) 评论(0) 推荐(0) 编辑
摘要: fangFa([a, b]){ } this.fangFa([1,2]); 阅读全文
posted @ 2024-11-29 16:52 流星曳尾 阅读(4) 评论(0) 推荐(0) 编辑
摘要: try{ } catch (e) { cc.error(e.message); } 能catch到异常,但还是卡死,感觉没啥用。而且catch不到异步代码里的异常 阅读全文
posted @ 2024-11-28 17:10 流星曳尾 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 直接写变量名,加enter。自动补全this 阅读全文
posted @ 2024-11-25 19:28 流星曳尾 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 锐角三角形 第三边平方小于两边平方和 顿角三角形 第三边平方大于两边平方和 大角对大边,小角对小边 阅读全文
posted @ 2024-10-31 11:52 流星曳尾 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 数组 let a = [1,2],b =[1,2]; a.toString() == b.toString() map let c = {"d":33,"f":44},d = {"d":33,"f":44}; JSON.stringify(c) == JSON.stringify(d); 阅读全文
posted @ 2024-10-21 14:21 流星曳尾 阅读(5) 评论(0) 推荐(0) 编辑