Solved

Complete the Code, Drawing Three More Lines Using the Current

Question 6

Essay

Complete the code, drawing three more lines using the current stroke color to complete a square between the points (100, 100) and (300, 300).
// gc is a GraphicsContext reference
gc.strokeLine( 100, 100, 300, 100 );
// your code goes here

Correct Answer:

verifed

Verified

gc.strokeLine( 300, 100, 300, ...

View Answer

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions