Draw text at angles

Ideally I want to draw text sideways, it will be used to display score on a two player game. Is there any way to draw text at specific angles?

@TheHam - rotate first

rotate(90) --rotates left 90 degrees
text("Sideways text",100,100)
pushMatrix()
translate(100,100)
rotate(90)
text("Hello World!",0,0)
popMatrix()

Thank you guys for the response. Seems very easy now you’ve said it, sorry if it was a wasted post.

@TheHam_ Any post that results in information isn’t a wasted post. You learned something and I’m sure a lot of other users learned as well.