home *** CD-ROM | disk | FTP | other *** search
- '
- ' Create a stack of cylinders
- ' Breeze Designer Macro
- ' Written by Neville Richards
- '
- New
-
- for i = 0 to 4
- for j = 0 to i
-
- SetCursor( j, i*-1, 0 )
- CreateDefaultObject( CYLINDER )
- Scale( 0.5, 2, 0.5 )
- Rotate( 90, 0, 0 )
-
- SetCursor( j*-1, i*-1, 0 )
- CreateDefaultObject( CYLINDER )
- Scale( 0.5, 2, 0.5 )
- Rotate( 90, 0, 0 )
- next
- next
-
-