home *** CD-ROM | disk | FTP | other *** search
- '
- ' Create a circle of cones
- ' Breeze Designer Macro
- ' Written by Neville Richards
- '
- radius = 5
-
- pi = 3.14159
- delphi = pi/6
-
- for m = -6 to 6
-
- phi = m*delphi
- c = cos(phi)
- s = sin(phi)
- px = radius*c
- py = radius*s
-
- SetCursor( px, py, 0 )
- CreateDefaultObject( CONE )
- Rotate( 90, 0, 0)
-
- next
-