Discuss clipping masks and the stacking order.
What will be an ideal response?
The stacking order plays a big role in clipping masks, because whenever you select a group of objects and apply the clipping mask command, the top object is used as the clipping mask. Illustrator identifies the clipping mask and all the objects clipped into it as a clipping set. Illustrator also remembers the stacking order within the clipping set. This means that you can bring clipped objects forward or move them backward within the clipping mask. Also, if you create a new object, it will be created outside of the clipping mask. However, if you cut (or copy) the new object, select a masked object, then click Paste in Front or Paste in Back, the new object will be pasted into the mask.
You might also like to view...
What program combines all the files needed for a complete program to run into one file?
What will be an ideal response?
In what library is the function atoi found?
A. it is part of “using namespace std”
B.
What is wrong with this code?
``` int Money4Me( int dollars ) { int pennies, coins; coins = dollars * 100; } ``` A. The function name is invalid. B. There is no return type. C. You can’t have math statements inside a function. D. Nothing is wrong with it.
____ are used to specify which elements in a container are to be operated on when an algorithm is called.
a. Iterators b. Walkers c. Sequencers d. Indexers