Tekkaman

导航

 
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 42 下一页

2015年8月17日

摘要: 参考:http://blog.chinaunix.net/uid-639516-id-2692517.html 阅读全文
posted @ 2015-08-17 21:06 Tekkaman 阅读(223) 评论(0) 推荐(0) 编辑
 

2015年8月7日

摘要: 1、一个操作所需的代码越多,就越难避免Bug,也越难发现它们。2、如果你长期使用某种语言,你就会慢慢按照这种语言的思维模式进行思考。所以,后来当你遇到其它任何一种有重大差异的语言,即使那种语言本身并没有任何不对的地方,你也会觉得它极其难用。3、从下往上看。 4、从上往下看。 5、编程语言的特点之... 阅读全文
posted @ 2015-08-07 22:01 Tekkaman 阅读(223) 评论(0) 推荐(0) 编辑
 

2015年8月4日

摘要: 1、“书呆子”与“高智商”有强烈的正相关关系。 2、对大多数人,聪明根本就是无足轻重的东西。智力在大家心里的分量远远不如相貌、魅力和运动能力的分量重。 3、聪明人更想追求的是另一件事——聪明。他们想要能够设计奇妙的火箭、写出漂亮的文章、理解编程原理。 4、聪明人没有意识到,“受欢迎”需要付出如此多努 阅读全文
posted @ 2015-08-04 14:29 Tekkaman 阅读(972) 评论(0) 推荐(0) 编辑
 

2015年5月29日

摘要: 【Enum】 阅读全文
posted @ 2015-05-29 20:48 Tekkaman 阅读(240) 评论(0) 推荐(0) 编辑
 
摘要: 【扩展方法】 扩展方法使你能够向现有类型“添加”方法,而无需创建新的派生类型、重新编译或以其他方式修改原始类型。扩展方法是一种特殊的静态方法,但可以像扩展类型上的实例方法一样进行调用。 阅读全文
posted @ 2015-05-29 14:23 Tekkaman 阅读(230) 评论(1) 推荐(0) 编辑
 

2015年4月28日

摘要: 【若(p,q)=1,则(p^n,q^n)=1】 因(p,q)=1,则p,q可分别表示成如下的形式: p=A^a*B^b*C^c, q=D^d*E^e*F^f 显示ABC、DEF无交集。而p^n、q^n可表示成。 p=(A^a*B^b*C^c)^n, q=(D^d*E^e*F^f)... 阅读全文
posted @ 2015-04-28 10:34 Tekkaman 阅读(501) 评论(0) 推荐(0) 编辑
 

2015年4月13日

摘要: 【若a与m互质,则a不影响m的完全剩余组】 设t通过m的完全剩余组,若at不通过m的完全剩余组, 则会有at1=at2(mod m),即a(t1-t2)|m。 因为(a,m)=1,所以(t1-t2)|m,即t1=t2(mod m)。 这基础条件矛盾。所以at通过m的完全剩余组。 阅读全文
posted @ 2015-04-13 21:05 Tekkaman 阅读(280) 评论(0) 推荐(0) 编辑
 
摘要: 【模m的剩余类里的一切数与m的最大公约数相等】 设剩余类里的任意两元素,a、b。则: a=mq1+r1, b= mq2+r1。 根据上式可得,(a,m)=(m,r1), (b,m)=(m,r2)。可推得(a,m)=(b,m)。 所以模m的剩余类里的一切数与m的最大公约数相等. 阅读全文
posted @ 2015-04-13 20:42 Tekkaman 阅读(634) 评论(0) 推荐(0) 编辑
 
摘要: 【若p是与10互质的质数,则k(p-1)个9能被p整除】 因为(p,10)=1,所以(p,10^k)=1。根据费马定理,10^(k*(p-1))-1|p。 而10^k*(p-1)-1是一个位数为(p-1)倍数且各位数均为9的数,所以本题得证。 比如:999999|7,999999999999|... 阅读全文
posted @ 2015-04-13 19:53 Tekkaman 阅读(407) 评论(0) 推荐(0) 编辑
 

2015年3月19日

摘要: 【class.__subclasses__()】 Each class keeps a list of weak references to its immediate subclasses. This method returns a list of all those references s... 阅读全文
posted @ 2015-03-19 10:28 Tekkaman 阅读(436) 评论(0) 推荐(0) 编辑
 

2015年3月17日

摘要: 【权利要求书】 按我国规定,权利要求书是申请发明专利的和申请实用新型专利的必须提交的申请文件。它是发明或者实用新型专利要求保护的内容,具有直接的法律效力,是申请专利的核心,也是确定专利保护范围的重要法律文件。申请人可以自行填写或撰写,也可以委托专利代理机构代为办理。 我国目前的科技发展水平体现在... 阅读全文
posted @ 2015-03-17 17:09 Tekkaman 阅读(225) 评论(0) 推荐(0) 编辑
 

2015年3月13日

摘要: 【嵌套类的访问】对于以下数据,如何在运行时通过字符串来得到静态变量UIPath的值。1 public class GameMainMenu : UIClass2 {3 public class JetPack : UIClass4 {5 public static U... 阅读全文
posted @ 2015-03-13 15:34 Tekkaman 阅读(465) 评论(0) 推荐(0) 编辑
 

2015年3月5日

摘要: 【NGUI显示DrawCall详细信息】 UIDrawCall中有个宏,SHOW_HIDDEN_OBJECTS,默认为关闭状态。将此宏打开,NGUI即会将DrawCall对象显示在Hierarchy中。如下: 对象的命名规则如下: 阅读全文
posted @ 2015-03-05 16:23 Tekkaman 阅读(502) 评论(0) 推荐(0) 编辑
 

2015年2月12日

摘要: 【自然对数展开式】 自然对数的底数e是由一个重要极限给出的。我们定义:当n趋于无限时, e是一个无限不循环小数,其值约等于2.718281828459…,它是一个超越数。 易证明:函数展开为x的幂级数(Maclaurin级数)是 特别地,当x=1时就得到了e的展开式 参考:... 阅读全文
posted @ 2015-02-12 12:38 Tekkaman 阅读(1476) 评论(0) 推荐(0) 编辑
 

2015年2月6日

摘要: 【Go Concurrency】1、Agoroutineis a lightweight thread managed by the Go runtime. 2、Channels are a typed conduit through which you can send and receive ... 阅读全文
posted @ 2015-02-06 20:07 Tekkaman 阅读(344) 评论(0) 推荐(0) 编辑
 
摘要: 【Go Methods and Interfaces】1、Go does not have classes. However, you can define methods on struct types. Themethod receiverappears in its own argument... 阅读全文
posted @ 2015-02-06 19:13 Tekkaman 阅读(262) 评论(0) 推荐(0) 编辑
 
摘要: 【Go structs、slices、maps】1、定义时*在变量名后面,使用时*在变量名前面。 2、定义struct,type在前,struct关键字在后。 3、指针可以指定struct。 4、A struct literal denotes a newly allocated stru... 阅读全文
posted @ 2015-02-06 12:55 Tekkaman 阅读(588) 评论(0) 推荐(0) 编辑
 

2015年2月5日

摘要: 【Defer 声明的设计理念】 Adefer statementpushes a function call onto a list. The list of saved calls is executed after the surrounding function returns. Defer... 阅读全文
posted @ 2015-02-05 21:57 Tekkaman 阅读(260) 评论(0) 推荐(0) 编辑
 
摘要: 【Go Flow Control】1、for没有(),必须有{}。 2、for的前后表达式可以为空。 3、没有while,for即是while。 4、无穷循环。 5、if没有(),必须有{}。 6、if临时变量。 Likefor, theifstatement can start wit... 阅读全文
posted @ 2015-02-05 21:34 Tekkaman 阅读(333) 评论(0) 推荐(0) 编辑
 
摘要: 【Unity加载二进制数据】 The first step is to save your binary data file with the ".bytes" extension.unitywill treat this file as aTextAsset. As a TextAsset th... 阅读全文
posted @ 2015-02-05 21:12 Tekkaman 阅读(2815) 评论(0) 推荐(0) 编辑
 
摘要: 【Go Packages、Variables、functions】1、定义包名。 2、引入Package。 3、定义导出的变量。首字母必须大写。 4、函数。Notice that the type comesafterthe variable name. 5、参数缩写。 6、函数可以返回任... 阅读全文
posted @ 2015-02-05 13:41 Tekkaman 阅读(185) 评论(0) 推荐(0) 编辑
 

2015年2月4日

摘要: 【C#泛型序列化困境】 问题的起因是这样,有一个需求,将JsonArray转化为List,JsonArray中的元素均是string,此string可被转化为int、float、或维持string。我的方案是扩展System.Collection.Generic.List,实现一个void Par... 阅读全文
posted @ 2015-02-04 20:42 Tekkaman 阅读(1497) 评论(1) 推荐(0) 编辑
 

2015年1月28日

摘要: 【Why Go's Declaration Syntax is better than C++?】 Newcomers to Go wonder why the declaration syntax is different from the tradition established in th... 阅读全文
posted @ 2015-01-28 10:47 Tekkaman 阅读(392) 评论(0) 推荐(0) 编辑
 

2015年1月27日

摘要: 【Clockwise/Spiral Rule】 There is a technique known as the ``Clockwise/Spiral Rule''. (顺时针螺旋法则). There are three simple steps to follow:Starting with... 阅读全文
posted @ 2015-01-27 20:39 Tekkaman 阅读(437) 评论(0) 推荐(0) 编辑
 
摘要: 【Lamda所有的Capture均是引用】 下面的程序,两个lambda 引用的实际上是同一个a、b。连int都能引用了,说明Lambda对所有类型都是以引用来处理。 1 int a = 0; 2 int b = 1; 3 Func exe = ()=>{ 4 ... 阅读全文
posted @ 2015-01-27 19:24 Tekkaman 阅读(219) 评论(0) 推荐(0) 编辑
 

2015年1月22日

摘要: 【Application.streamingAssetsPath】 This API contains the path to the StreamingAssets folder (Read Only). If you have a "StreamingAssets" folder in th... 阅读全文
posted @ 2015-01-22 19:26 Tekkaman 阅读(2058) 评论(0) 推荐(0) 编辑
 

2015年1月20日

摘要: 【使用BMFont】参考1说明如何根据ttf字体生成fnt、png。参考2说明如何根据自定义图片生成fnt、png。分三步:1、Edit->Open Image Manager。导入需要的图片。2、Option->Export Option。设置配置选项。3、Option-> Save Bitmap... 阅读全文
posted @ 2015-01-20 22:02 Tekkaman 阅读(332) 评论(0) 推荐(0) 编辑
 

2015年1月6日

摘要: 【常用的十八个希腊字母】1、α,/'ælfə/,角度,系数,角加速度2、β,/'betə/,角度,系数3、γ,/ˈgama/,角度4、Δ,δ,/‘dεltə/,变化量,一元二次方程中的判别式5、ε,/'epsilon/,对数之基数6、ζ,/zita/,系数,方位角7、η,/ˈita/,效率8、θ,/... 阅读全文
posted @ 2015-01-06 23:32 Tekkaman 阅读(16269) 评论(0) 推荐(0) 编辑
 

2015年1月2日

摘要: 【范德蒙恒等式】 甲班有个同学,乙班有个同学,从两个班中选出个一共有种不同的选法。而换一种思维方式从甲班中选取个同学,从乙班中选取个同学,共有种方法,而对所有的就是范德蒙恒等式。 下面的形式也叫范德蒙恒等式。是特殊形式。此形式中,k=n=m。济C(n,k) = C(n,n-k)。 阅读全文
posted @ 2015-01-02 00:49 Tekkaman 阅读(1628) 评论(0) 推荐(0) 编辑
 

2014年12月31日

摘要: 【Motion Blur】 此篇介绍最简单的全局Motion Blur。算法是将当前帧与前一帧按某一比例混合。这是一个过程,例如有10帧,在第1帧中,只有第1帧原图,第2帧中有1、2帧原图,第3帧中会有1、2、3帧原图,依次类推。 假设混合比较为a,即原图为1-a,累积图为a,那么1帧新进入... 阅读全文
posted @ 2014-12-31 18:12 Tekkaman 阅读(2540) 评论(0) 推荐(0) 编辑
 

2014年12月28日

摘要: 【y=x^2 vs y=x^(1/2)】 y=x^2,基础函数,废话不多说。 y=x^(1/2),指数变成了上式的倒数。x^(1/2)即是,√x。但函数图像会是什么样呢?可以把y=x^(1/2),转变成y^2 = x。这样之后,发现与上式形式一样,只是把x轴、y轴颠倒了。所以将上图X、Y轴对... 阅读全文
posted @ 2014-12-28 23:37 Tekkaman 阅读(13834) 评论(0) 推荐(0) 编辑
 

2014年12月26日

摘要: 【Fundamentals of Garbage Collection】1、Reclaims objects that are no longer being used, clears their memory, and keeps the memory available for future a... 阅读全文
posted @ 2014-12-26 12:46 Tekkaman 阅读(275) 评论(0) 推荐(0) 编辑
 

2014年12月25日

摘要: 【CLR的八大特性】 Code that you develop with a language compiler that targets the runtime is called managed code. CLR的八大特性:The ability to easily use compon... 阅读全文
posted @ 2014-12-25 14:48 Tekkaman 阅读(338) 评论(0) 推荐(0) 编辑
 

2014年12月23日

摘要: 【Navigation and Pathfinding】 术语: 1)NavMesh 2)NavMesh Agent 3)Off-Mesh Link 4)NavMesh Obstacle A common algorithm to find the path is A* (pronounced “A 阅读全文
posted @ 2014-12-23 09:08 Tekkaman 阅读(690) 评论(0) 推荐(0) 编辑
 

2014年12月19日

摘要: 【Work-Stealing in .NET 4.0】 1、线程按LIFO取Task,因为最后一个Task很可能还在Cache中,提高命中率。 2、Stealer从FIFO取Task,最先加入的Task会不可能被原线程Cache。 参考:http://blogs.msdn.com/b/je... 阅读全文
posted @ 2014-12-19 11:17 Tekkaman 阅读(325) 评论(0) 推荐(0) 编辑
 

2014年12月17日

摘要: 【Graphics.Blit】 需求注意第4个参数,用4个参数pass用于指定使用哪一个pass。默认值为-1,即使用所有的pass。 参考:file:///C:/Program%20Files%20(x86)/Unity/Editor/Data/Documentation/html/en/... 阅读全文
posted @ 2014-12-17 09:44 Tekkaman 阅读(3838) 评论(0) 推荐(0) 编辑
 

2014年12月16日

摘要: 【整数的可除性】1、带余数除法。若a、b是两个整数,其中b>0,则存在着两个整数q及r,使得a=bq+r,00,且b>r>=0。所以对于(-1)%7,r应该是6。理论上不应该存在b为负数的情况。 b | a,意为b整除a。 a = bt。2、a是b的倍数,b是c的倍数,则a是c的倍数。3、若a... 阅读全文
posted @ 2014-12-16 14:36 Tekkaman 阅读(1107) 评论(0) 推荐(0) 编辑
 

2014年12月15日

摘要: 【关于强度】 首先,如何计算一个小数次幂?如3^1.6? 解法是将小数转化为分数,先整数幂乘,再开方。对上3^1.6,则是: 3^(8/5),就是先是3的8次方 再开5次根,约等于5.80。 在镜面反射公式中,有一个光强指定Value^Gloss。Value介于0~1之间。Gloss为... 阅读全文
posted @ 2014-12-15 09:46 Tekkaman 阅读(217) 评论(0) 推荐(0) 编辑
 

2014年12月12日

摘要: 【重心坐标空间】 重心坐标的和总是1. b1+b2+b3=1. 三角形内点的重心坐标均为0~1。三角形外的点至少有一个坐标为负。 已经三角形三点坐标,以及三角内某点p坐标,如果求p的重心坐标? 阅读全文
posted @ 2014-12-12 17:58 Tekkaman 阅读(879) 评论(0) 推荐(0) 编辑
 
摘要: 【平面点集最佳平面】 给定很多个点,希望求最最佳平面。法线公式如下: => 最佳d值为每个点对应的d的平均值: 尚未想明白此公式如何而来。日后再解。 阅读全文
posted @ 2014-12-12 15:23 Tekkaman 阅读(397) 评论(0) 推荐(0) 编辑
 
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 42 下一页