Admiral Snackbar
Well-Known Member
- Joined
- Jan 12, 2016
- Messages
- 183
- Reaction score
- 0
Edit: I answered my title question with some logic lol.
I still can't color the arc though.
Doing a project for Khan Academy and I want to make it look better, but they haven't covered this yet.
As it stands atm;
1)
2)
3)
These are all the same color as the text that follows, I want them to be a different color.
Also, how can I color in this Arc that I used to make the lipstick? I used two lines and an arc to create the shape, but now I want to fill it.
I plan to add an animation afterwords where I have the lipstick move across the screen and leave a lipstick smudge.
I still can't color the arc though.
Doing a project for Khan Academy and I want to make it look better, but they haven't covered this yet.
Code:
background(255, 255, 255);
fill(230, 21, 230);
textSize(25);
text("Make Up Artistry by Kim Davies", 10, 35);
textSize(19);
text("1) KOHL qualified!", 10, 65);
text("2) Airbrush application available.", 10, 95);
text("3) Prosthetic, special effects and more!", 10, 125);
// lipstick
rect(35, 240, 43, 100); // base of lipstick
line(40, 195, 40, 240); // left part of stick
line(72, 169, 72, 240); // right part of stick
noFill();
arc(16, 154, 118, 93, 378, 424);
As it stands atm;
1)
2)
3)
These are all the same color as the text that follows, I want them to be a different color.
Also, how can I color in this Arc that I used to make the lipstick? I used two lines and an arc to create the shape, but now I want to fill it.
I plan to add an animation afterwords where I have the lipstick move across the screen and leave a lipstick smudge.
Last edited: