transform:rotate旋转deg #box1{
-moz-transform:rotate(10deg); -webkit-transform:rotate(10deg); }transform:skew倾斜
#box2{ -mo...
分类:
Web程序 时间:
2014-05-27 00:47:36
阅读次数:
309
header (ctype.h)Character handling functionsThis
header declares a set of functions to classify and transform individual
characters.FunctionsThese fun...
分类:
其他好文 时间:
2014-05-23 22:04:32
阅读次数:
504
近来,HTML5和CSS3的发展速度还是很可观的,国内外不乏一些大站,酷站都在使用最新的技术。面对新的技术,我们该如何正确的把握和使用到今后的项目实战中呢?针对这一问题,浩子决定剖析CSS3,一一像各位同学解答CSS3到底是个神马东西。就已transform开始吧,写的不好的话,请严重拍砖!!CSS...
分类:
Web程序 时间:
2014-05-23 09:56:25
阅读次数:
288
这些属性,内部都是结构体:CGRect CGPoint
CGFloat背景知识:所有的控件都是view的子类,屏幕就是一个大的view;每个view都有个viewController,它是view的管家,每个view对应着一个viewController,来管理view。frame
& bounds...
分类:
移动开发 时间:
2014-05-23 04:18:38
阅读次数:
338
1 综述Separating touching objects in an image is one
of the more difficult image processing operations. The watershed transform is
often applied to this...
分类:
其他好文 时间:
2014-05-22 04:27:23
阅读次数:
497
将结构体包装成 NSValue ,并取出结构体1 NSRect rect = {0, 0,
200,200};2 NSValue *rectValue = [NSValue valueWithBytes:&rect
objCType:@encode(NSRect)];3 NS...
分类:
其他好文 时间:
2014-05-19 17:31:28
阅读次数:
246
[UIViewbeginAnimations:nilcontext:nil];
[UIViewsetAnimationDuration:0.5]; _imgView.transform =
CGAffineTransformScale(CGAffineTransformIdentity, 0....
分类:
Web程序 时间:
2014-05-19 17:15:58
阅读次数:
207
package main import ("fmt")//对象定义type Rect
struct{x,y float64width ,height float64} //对象方法实现func (r *Rect)
Area()float64{return r.width*r.height}//Go语...
分类:
其他好文 时间:
2014-05-18 19:36:55
阅读次数:
405
本文主要介绍一下利用径向变换进行特征提取的方法和原理,基本原理主要来自...
分类:
其他好文 时间:
2014-05-15 23:59:39
阅读次数:
675
基本图形的绘制 包括: 代码画线,画文字 图片 裁剪 重绘 简单动画
当自定义view的时候 系统会自动调用drawRect 方法
画线
- (void)drawRect:(CGRect)rect
{
// Drawing code
// 1.获得图形上下文
CGContextRef ctx = UIGraphicsGetCurrentContext();
...
分类:
移动开发 时间:
2014-05-14 21:20:24
阅读次数:
497