How can you combine multiple transformations to create complex effects in Canvas programming?
A). Use separate canvas contexts for each transformation
B). Apply transformations in a specific order
C). Use a single transformation method for all effects
D). Use a different canvas for each transformation
What transformation technique is used to change the size of an object along the x and y axes?
A). Scaling
B). Translation
C). Rotation
D). Skewing
What does the scale() method do in Canvas programming?
A). Adjusts the size of an object
B). Applies rotation to an object
C). Tilts an object along the x and y axes
D). Slants an object
Which method is used to apply skewing to objects in Canvas programming using JavaScript?
A). ctx.transform()
B). ctx.translate()
C). ctx.scale()
D). ctx.skew()
What does the rotate() method do in Canvas programming?
A). Applies rotation to an object
B). Adjusts the size of an object
C). Scales an object
D). Skews an object
Which method is used to apply translation to the Canvas context in JavaScript?
A). ctx.translate()
B). ctx.rotate()
C). ctx.scale()
D). ctx.transform()
Which transformation technique is used to resize an object along the x and y axes?
A). Scaling
B). Skewing
C). Rotation
D). Translation
Which transformation technique involves changing the orientation of an object around its center point?
A). Rotation
B). Translation
C). Scaling
D). Skewing
How can you apply rotation and translation together to an object in Canvas programming using JavaScript?
A). Apply rotation first, then translation
B). Apply translation first, then rotation
C). Apply rotation and translation simultaneously
D). Apply translation, then rotation sequentially
What is the primary purpose of applying translation to objects in Canvas programming?
A). To change the orientation of objects
B). To resize objects
C). To move objects to different positions
D). To tilt objects along the x and y axes