home *** CD-ROM | disk | FTP | other *** search
- iOld = CreateImage( 1,1 )
- Image(iOld).CopyFrom(0)
- ' MotionBlur( Dim, Angle 1...36000, Unidirectional TRUE/FALSE )
- for i = 0 to 100 step 10
- Image(0).CopyFrom( iOld )
- Image(0).MotionBlur( i, 0, TRUE )
- ReDraw(1)
- Sleep(100)
- Next
-
- for i = 0 to 36000 step 1800
- Image(0).CopyFrom( iOld )
- Image(0).MotionBlur( 10, i, FALSE )
- ReDraw(1)
- Sleep(200)
- Next
- Image(0).CopyFrom( iOld )
- Image(iOld).Delete()
-
-