- Actionscript 3 - Catmull-Rom Spline curve code
- 프로그래밍/Actionscript3.0
- 2010/03/03 12:54
- Catmull-Rom Spline
more..
사용방법은.. 곡선을 이을 포인트(x,y쌍) 배열을 매개변수로 넘긴다. $n 은 보간 정도..
ex)
var points : Vector.<Number> = Vector.<Number>(50,50,100,200,200,100,300,300);
var path : Vector.<Number> = CatmullRomSpline.curve(points,20) ;
path[2*i] -> x
path[2*i+1] -> y
'프로그래밍 > Actionscript3.0' 카테고리의 다른 글
| Actionscript 3 - Catmull-Rom Spline curve code (0) | 2010/03/03 |
|---|---|
| Actionscript 3.0 /flash drawing (0) | 2010/02/26 |
| 컴퓨터가 그린 설리와 손담비 (2) | 2010/02/04 |
| Flash Actionscript Media Art - Line (0) | 2010/01/21 |
- Actionscript 3.0 /flash drawing
- 프로그래밍/Actionscript3.0
- 2010/02/26 15:21
'프로그래밍 > Actionscript3.0' 카테고리의 다른 글
| Actionscript 3 - Catmull-Rom Spline curve code (0) | 2010/03/03 |
|---|---|
| Actionscript 3.0 /flash drawing (0) | 2010/02/26 |
| 컴퓨터가 그린 설리와 손담비 (2) | 2010/02/04 |
| Flash Actionscript Media Art - Line (0) | 2010/01/21 |
- 전미분 표현에 대하여
- 수학
- 2010/02/24 09:24
- 전미분
http://mathparadigm.blogspot.com/2007/04/blog-post_26.html
'수학' 카테고리의 다른 글
| 전미분 표현에 대하여 (0) | 2010/02/24 |
|---|---|
| 카디오이드와 리마송 (0) | 2010/02/13 |





Recent comment