码迷,mamicode.com
首页 >  
搜索关键字:transform    ( 3699个结果
SSIS学习笔记
SSIS是Microsoft SQL Server Integration Services的简称,是生成高性能数据集成解决方案(包括数据仓库的提取、转换和加载 (ETL) 包)的平台。ETL,是英文 Extract-Transform-Load 的缩写,用来描述将数据从来源端经过抽取(extrac...
分类:其他好文   时间:2015-07-03 11:49:21    阅读次数:123
CGAffineTransformMakeTranslation和CGAffineTransformTranslate
分类:ios基础2013-01-06 22:0515513人阅读评论(2)收藏举报1.CGAffineTransformMakeTranslation每次都是以最初位置的中心点为起始参照 CGAffineTransformTranslate每次都是以传入的transform为起始参照 CGAffin...
分类:Web程序   时间:2015-07-02 23:59:25    阅读次数:362
unity中如何获取所有子物体的组件
public GameObject[] obj;     void Awake()     {             for (int i = 0; i         {             for (int j = 0; j             {                 print("obj[i].transform.childCount=" + E...
分类:编程语言   时间:2015-07-02 17:38:13    阅读次数:470
CSS3之Transform(变形)一
之前介绍过了转换(transition),这次我们来介绍下变形(Transform),同样的,语法理论部分请参考w3cplus网,文章是为了给我自己备忘用的,先摘录w3cplus网的理论部分,再上几个自己对理论部分理解的示例,如有错误,望指出。 Transform字面上就是变形,改变的意思。在...
分类:Web程序   时间:2015-07-01 20:00:46    阅读次数:225
NGUI 触摸拖动,并限制拖动区域
using UnityEngine;using System.Collections;public class UDragManager : MonoBehaviour { public Transform target; private Vector3 offset; p...
分类:其他好文   时间:2015-07-01 17:21:29    阅读次数:100
unity, iterate immediate children and iterate all children
遍历所有直接子节点(immediate children):foreach (Transform child in transform){ // do whatever you want with child transform object here}注:transform.childCou...
分类:编程语言   时间:2015-07-01 06:14:25    阅读次数:211
数据结构-中序转后序
#include#include#include#include#includeusing namespace std;void print(vector &);void transform(vector&,vector&);int main(){ cout _in_vec; char tmp; s...
分类:其他好文   时间:2015-06-30 23:33:51    阅读次数:148
【Regularization】林轩田机器学习基石
正则化的提出,是因为要解决overfitting的问题。以Linear Regression为例:低次多项式拟合的效果可能会好于高次多项式拟合的效果。这里回顾上上节nonlinear transform的课件:上面的内容说的是,多项式拟合这种的假设空间,是nested hypothesis;因此,能...
分类:其他好文   时间:2015-06-30 21:36:17    阅读次数:356
NGUI血条制作,当人物不移除屏幕后不现实血条,优化代码
using UnityEngine; using System.Collections; /// /// 脚本功能:NGUI血条实现 /// 知识要点:NGUI,3D坐标到2D坐标的转换 /// 创建时间:2015年6月29日 /// 添加对象:添加到玩家身上 /// public class HP_2 : MonoBehaviour { // 玩家 Transform Player; ...
分类:其他好文   时间:2015-06-30 10:35:31    阅读次数:112
css3 鼠标移入移出效果
.icon { -webkit-transform: rotate(0deg); -webkit-transition: -webkit-transform 0.3s ease;}.box:hover { -webkit-transform: rotate(360deg); -webki...
分类:Web程序   时间:2015-06-30 10:14:34    阅读次数:148
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!