Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Instruction
Rendering Spaces
Assignment:
- Add two properties in the Space class constructor method:
diameter
andradius
. Set the value of thediameter
property equal to 76. Theradius
property should be equal to half the value of thediameter
property. - Create a method inside the Space class called drawSVGSpace() using the requirements and guidelines below.
Render Methods
A "render met...