Welcome,
Guest
. Please
login
or
register
. Did you miss your
activation email?
French forum
Home
Help
Search
Login
Register
SFML community forums
»
Help
»
Graphics
»
Shape setposition
Print
Pages: [
1
]
Author
Topic: Shape setposition (Read 1164 times)
0 Members and 2 Guests are viewing this topic.
takercena
Newbie
Posts: 10
Shape setposition
«
on:
June 08, 2012, 06:23:52 am »
I read somewhere in this forum that setposition is returning an absolute coordinate. Is there any way to make it so when I set a circle origin (setPosition) at 0,0, only the last quarter of the circle is viewed on the window?
«
Last Edit: June 08, 2012, 06:30:04 am by takercena
»
Logged
Laurent
Administrator
Hero Member
Posts: 32498
Re: Shape setposition
«
Reply #1 on:
June 08, 2012, 08:08:05 am »
You can set the origin of the circle to be its center instead of its top-left corner
circle.
setOrigin
(
radius
/
2
, radius
/
2
)
;
Logged
Laurent Gomila - SFML developer
takercena
Newbie
Posts: 10
Re: Shape setposition
«
Reply #2 on:
June 14, 2012, 05:02:56 am »
Thank you.
Logged
Print
Pages: [
1
]
SFML community forums
»
Help
»
Graphics
»
Shape setposition