Shape (small basic) - A shape is an object that be created, moved, rotated and modified using certain commands. Example of creating a shape: ball = shapes.addEllipse(30,30)
Shapes.Move ( ) - A command that allows a chosen shape to be moved. In the brackets the shapeName, and x/y coordinate is needed. Example: Shapes.Move(ball,30,20)
Shapes.Rotate( ) - A command that allows a chosen shape to be rotated. In the brackets the shapeName, and rotation about is needed. Example: Shapes.Move(ball,90)
Input - Devices that send information to you computer such as a mouse and keyboard.
Input - Devices that send information to you computer such as a mouse and keyboard.
Variable - Variables are used to store a value that can then be later used or modified in the program. When a variable is created, it is assigned a name to be referenced by. Example: Score = 5
String - a sequence of characters that be stored in a variable.