摘要: glVertexAttribPointer的详细用法,参考 http://docs.gl/gl4/glVertexAttribPointer 这篇文章做一下简单的记录: 先按照我自己的理解,做一下说明: attribute: position, UV坐标,Color等属性。 vertex: 一组 a 阅读全文
posted @ 2020-05-20 23:21 HaHahahahaaaa 阅读(1306) 评论(1) 推荐(0) 编辑
摘要: Time operator+(const Time &t) const; //成员函数版本 friend Time operator+(const Time &t1, const Time &t2); // 友元版本 对于成员函数版本来说, 一个操作数通过this指针隐式传递, 另一个操作数作为参数 阅读全文
posted @ 2020-03-10 20:02 HaHahahahaaaa 阅读(130) 评论(0) 推荐(0) 编辑
摘要: world.timer的函数定义: function world.timer(tick, func) -- do something end 首先说明一下:tick是时间单位, 例如20。 func则是函数名。 这个函数的作用是延迟20个tick之后调用func函数。 func的函数定义: func 阅读全文
posted @ 2020-02-16 21:54 HaHahahahaaaa 阅读(845) 评论(0) 推荐(0) 编辑
摘要: Output Directory: $(SolutionDir)bin\$(Platform)\$(Configuration)\Intermediate Directory: $(SolutionDir)bin\intermediates\$(Platform)\$(Configuration)\ 阅读全文
posted @ 2020-02-13 10:40 HaHahahahaaaa 阅读(740) 评论(0) 推荐(0) 编辑
摘要: 在开始之前: 一般指针的定义: int* number = 6; // *number是数字6。 int ducks = 12; int* birddog = &ducks; // 把birddog(而不是*birddog)的值设置为&ducks。 *运算符被称为间接符号,或者解引用。用于指针时,可 阅读全文
posted @ 2020-02-06 16:38 HaHahahahaaaa 阅读(470) 评论(0) 推荐(0) 编辑
摘要: local txt1 = " a bcde fg " local txt2 = "a bcde fg " local txt3 = " a bcde fg" txt1 = string.gsub(txt1, "^%s*(.-)%s*$", "%1") txt2 = string.gsub(txt2, 阅读全文
posted @ 2020-02-06 10:30 HaHahahahaaaa 阅读(1216) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 6 std::string ToThousandsNum(int num) 7 { 8 std::stringstream ss; 9 ss << num; 10 11 std::string str = ss.str(); 12 std::r... 阅读全文
posted @ 2019-03-14 20:55 HaHahahahaaaa 阅读(663) 评论(0) 推荐(0) 编辑
摘要: Singleton.h Random.h Random.cpp main.cpp 阅读全文
posted @ 2019-03-14 20:26 HaHahahahaaaa 阅读(283) 评论(0) 推荐(0) 编辑
摘要: 一:背景: 目前項目使用的是php語言開發,需要接入中國工商銀行的ICBC的線上支付接口。 二:遇到的問題:支付時需要對數據簽名,但是銀行那邊不提供php版本的程序,只有java版本的,以下是對接人回復的郵件: 三:思路: 目前大概有3種解決方案: 1. 通過使用一個叫 php-java-bridg 阅读全文
posted @ 2018-01-28 18:42 HaHahahahaaaa 阅读(1177) 评论(1) 推荐(0) 编辑
摘要: # Rime schema settings# encoding: utf-8 schema: schema_id: wubi86 name: "五笔86" version: "0.21" author: - 發明人 王永民先生 description: | 五筆字型86版 碼表源自 ibus-ta 阅读全文
posted @ 2017-10-21 21:19 HaHahahahaaaa 阅读(650) 评论(0) 推荐(0) 编辑