Coding Support
Read Ad-free Manga, Manhwa, and Manhua at https://trilliux.me!

You are not connected. Please login or register

View previous topic View next topic Go down Message [Page 1 of 1]

1
Calculator plz Empty Calculator plz Sat Jun 08, 2013 12:09 pm

Hatred

Hatred
CS Member
Can someone plz make me a calculator??? I need to use it on one of my subdomains...

2
Calculator plz Empty Re: Calculator plz Sat Jun 08, 2013 12:12 pm

Hatred

Hatred
CS Member
bump

3
Calculator plz Empty Re: Calculator plz Sat Jun 08, 2013 12:15 pm

Support

Support
Site Admin
Code:
DateTime dateTime = DateTime.Now;
int hour = dateTime.Hour % 12; // also converts 24hrs to 12hrs format
int minute = dateTime.Minute;
int sec = dateTime.Second;
float hourRadian = hour * 360/12 * PI/180;
float minRadian = minute * 360/60 * PI/180;
float secRadian = sec * 360/60 * PI/180;
X = r*cos(angle)
Y = r*sin(angle)
float hourEndPointX = lengthofHourHand * System.Math.Sin(hourRadian)
float hourEndPointY = lengthofHourHand * System.Math.Cos(hourRadian)
Line(centerX, centerY, hourEndPointX, hourEndPointY)float hour = dateTime.Hour%12 + (float)dateTime.Minute/60
float hourRadian = hour * 360/12 * PI/180;float hourEndPointX = lengthofHourHand * System.Math.Sin(hourRadian);
float hourEndPointY = lengthofHourHand * System.Math.Cos(hourRadian);
Line(centerX, centerY, hourEndPointX, hourEndPointY);

https://twzforums.forumotion.com

Sponsored content


View previous topic View next topic Back to top Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum