码迷,mamicode.com
首页 >  
搜索关键字:bezier curve    ( 338个结果
iOS开发 贝塞尔曲线UIBezierPath
使用UIBezierPath类可以创建基于矢量的路径,这个类在UIKit中。此类是CoreGraphics框架关于path的一个封装。使用此类可以定义简单的形状,如椭圆或者矩形,或者有多个直线和曲线段组成的形状。      1.Bezier Path 基础    UIBezierPath对象是CGPathRef数据类型的封装。path如果是基于矢量形状的,都用直线和曲线段去创建。 我们使...
分类:移动开发   时间:2015-01-15 20:29:35    阅读次数:348
matplotlib curve.py
import matplotlib.pyplot as plt import numpy as np x = np.linspace(0, 2*np.pi, 100) sinX = np.sin(x) cosX = np.cos(x) plt.plot(x, sinX) plt.plot(x, co...
分类:其他好文   时间:2015-01-10 23:40:33    阅读次数:193
iOS开发——仿淘宝添加到购物车的动画效果实现
类似于淘宝一样,我们在写一些购物、订餐之类的app的时候,在用户选择购买或者加入购物车时可以添加一个商品飞到购物车中的动画效果,如下图所示: 实现这个效果还是不算难的,但涉及的问题比较多,还是挺有学习价值的。主要面对的问题有以下几点 1、cell中有button,如何获得该button,即如何知道用户点击的是哪一个button。 2、坐标系的转换,这里频繁使用坐标系转换,主要原因是这里需要涉及三个视图——cell、tableView、view 3、Bezier曲线的应用。 下面我们一一来解决这些问题。 正好...
分类:移动开发   时间:2015-01-01 17:24:04    阅读次数:1405
[转载]建立时间和保持时间
http://referencedesigner.com/tutorials/si/si_02.phpThe Concept of Setup and Hold Time can be best understood with the picture shown below.The curve sh...
分类:其他好文   时间:2014-12-22 12:37:15    阅读次数:193
Polynomial Curve Fitting
pcf.minputSamp = (0:0.1:1)';result = sin(2*pi*inputSamp);gsNoise = randn(11,1)*0.1;observation = result + gsNoise;x=(0:0.01:1)';y=sin(2*pi*x);%{figure...
分类:其他好文   时间:2014-12-20 19:35:23    阅读次数:268
【Cocos2d-x】使用贝塞尔曲线(Bezier)实现精灵抛物线运动
【Cocos2d-x】使用贝塞尔曲线(Bezier)实现精灵抛物线运动...
分类:其他好文   时间:2014-12-20 11:48:46    阅读次数:334
OpenCV Tutorials —— Creating Bounding boxes and circles for contours
同样是提取出轮廓之后的处理 ~~ void approxPolyDP(InputArray curve, OutputArray approxCurve, double epsilon, bool closed) Parameters: curve – Input vector of a 2D po...
分类:其他好文   时间:2014-11-23 21:22:39    阅读次数:302
OpenCASCADE Linear Extrusion Surface
Abstract. OpenCASCADE linear extrusion surface is a generalized cylinder. Such a surface is obtained by sweeping a curve (called the “extruded curve” ...
分类:其他好文   时间:2014-11-23 17:18:29    阅读次数:414
yield curve
1.A yield curve can be built using deposit rates, swap rates, and future/forward rates2.A par-coupon rate is the yield to maturity of a coupon-paying ...
分类:其他好文   时间:2014-11-20 07:55:42    阅读次数:232
ROC曲线
ROC曲线指受试者工作特征曲线 / 接收器操作特性曲线(receiver operating characteristic curve), 是反映敏感性和特异性连续变量的综合指标,是用构图法揭示敏感性和特异性的相互关系,它通过将连续变量设定出多个不同的临界值,从而计算出一系列敏感性和特异性,再以敏....
分类:其他好文   时间:2014-11-02 16:14:26    阅读次数:252
338条   上一页 1 ... 28 29 30 31 32 ... 34 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!