Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~24 People Reached
Favorite Forums
Favorite Tags
c++ x 1
Member Avatar for Decysen

Hi guys, i have this D3D code here: [code]void drawArrow(float x, float y, float yaw, D3DCOLOR color) { D3DXVECTOR2 points[3]; points[0] = D3DXVECTOR2(-3, 5); points[1] = D3DXVECTOR2( 0, 0); points[2] = D3DXVECTOR2( 3, 5); D3DXVECTOR2 points2[3]; float rad_dir = D3DXToRadian(-yaw); for (int i=0; i<3; i++) { points2[i].x = ((points[i].x * …

0
24