06.08.2010, 21:03
Quote:
i know, but i am making my own converter!
so how i can transform the mta rotations to samp rotations, because there different |
EDIT:
pawn Код:
Private Function radians2degrees(ByVal radians As Double) As Double
Dim degrees As Double = Math.Round(radians * 180.0 / Math.PI, 6)
If radians = 0.0 Then
Return 0.0
End If
radians2degrees = degrees
End Function