UnityEngine.Object继承自system.Object,是Unity所涉及所有物体的基类。 Static Functions 静态函数 下面的都是静态函数 Destroy Removes a gameobject, component or asset.删除一个游戏对象、组件或资源 D ...
分类:
编程语言 时间:
2017-09-17 01:27:18
阅读次数:
262
【对偶空间】dual vector space对偶空间是线性函数的集合。Dual vector space consists of linnear functions. In mathematics, any vector space V has a corresponding dual vecto ...
分类:
其他好文 时间:
2017-09-16 16:04:21
阅读次数:
384
d3.scale 比例尺 “Scales are functions that map from an input domain to an output range” Domains 定义域 和 Ranges 值域 创建线性比例尺 d3.max()和d3.min() 设置动态比例尺 设置圆心和la ...
分类:
其他好文 时间:
2017-09-15 20:16:02
阅读次数:
91
内建函数(常用) 内建函数: 在Python的手册中,名叫build-in Functions,中文可以称为内建函数。 内建函数就像dos系统的内部命令,他不依赖于外部模块。 内建函数就是:安装好Python后就可以直接使用的函数,不需要import任何模块 基本的内建函数: int, str, l ...
分类:
其他好文 时间:
2017-09-15 01:49:47
阅读次数:
200
1. 聚合函数(Aggregate Function) MySQL(5.7 ) 官方文档中给出的聚合函数列表(图片)如下: 详情点击https://dev.mysql.com/doc/refman/5.7/en/group-by-functions.html 。 除非另有说明,否则聚合函数都会忽略空 ...
分类:
数据库 时间:
2017-09-14 20:13:40
阅读次数:
208
置顶 内置函数详解 https://docs.python.org/3/library/functions.html?highlight=built#ascii 此文参考了别人整理好的东西(地址:http://www.cnblogs.com/sesshoumaru/p/6140987.html#p1 ...
分类:
编程语言 时间:
2017-09-10 21:49:01
阅读次数:
237
【Promise()】 The constructor is primarily used to wrap functions that do not already support promises. executor A function that is passed with the argu ...
分类:
其他好文 时间:
2017-09-09 09:44:12
阅读次数:
205
一: All member functions (including copy constructor and copy assignment) can be called by multiple threads on different instances of shared_ptr withou ...
分类:
编程语言 时间:
2017-09-08 10:18:05
阅读次数:
455
【async.series】 series适用于顺序执行异步且前后无关联的调用。对于顺序执行异步且前后有叛逆的调用,则需要使用waterfall。 If any functions in the series pass an error to its callback, no more functi ...
分类:
其他好文 时间:
2017-09-07 18:15:58
阅读次数:
159
6.4 Functions 6.4.1 Numeric abs/mod 绝对值/求模 sqrt/power/exp 求幂 ceil/floor/round 取整 trunc 截取小数点 sin/cos/ln/log 数学函数 6.4.1 Numeric abs/mod 绝对值/求模 sqrt/pow ...
分类:
数据库 时间:
2017-09-06 11:43:09
阅读次数:
259