home *** CD-ROM | disk | FTP | other *** search
- // ========================================================================
- // sizeshape.cs
- //
- // This module contains a function for scaling a specified shape.
- // ========================================================================
-
-
- function SizeShape(%shape, %scale)
- // ----------------------------------------------------
- // moves the %shape by %scale amount
- // ----------------------------------------------------
- {
- echo ("SizeShape: shape id: ", %shape);
- echo ("SizeShape: angle: ", %scale);
- %shape.setScale(%scale SPC %scale SPC %scale);
- echo ("SizeShape: done.");
- }
-
-