Click here to Skip to main content
15,893,814 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Structure/Class member addresses Pin
CPallini5-Mar-10 6:24
mveCPallini5-Mar-10 6:24 
AnswerRe: Structure/Class member addresses Pin
Avi Berger5-Mar-10 5:11
Avi Berger5-Mar-10 5:11 
QuestionData Type Conversions Pin
Andy2025-Mar-10 2:06
Andy2025-Mar-10 2:06 
QuestionRe: Data Type Conversions Pin
CPallini5-Mar-10 3:28
mveCPallini5-Mar-10 3:28 
AnswerI'm not following the math you're doing, but maybe this will help.. Pin
Mike the Red5-Mar-10 3:33
Mike the Red5-Mar-10 3:33 
GeneralRe: I'm not following the math you're doing, but maybe this will help.. Pin
Andy2025-Mar-10 8:12
Andy2025-Mar-10 8:12 
AnswerRe: Data Type Conversions Pin
Luc Pattyn5-Mar-10 4:19
sitebuilderLuc Pattyn5-Mar-10 4:19 
GeneralRe: Data Type Conversions Pin
Andy2025-Mar-10 10:48
Andy2025-Mar-10 10:48 
Just to recap and get things right in my mind; if a heading value is represented as an unsigned short (16 bits) with bit 1 = 0.000030517578125; so the range is -1 to + 1 and if we multiple by 180 we get -180 to +180 degrees - more useful

Now for a test I set heading to 3.45 then the following occures.

3.45/0.000030517578125 = 1B999 in Hex; but as we can only store 16 bits in the unsigned short the debugger shows B999 as the value.

Now when I come to decode that vaue via:-

B999 * 0.000030517578125 = 1.44998169 which is wrong and if x 180 to get into degrees then get 260.99.

Now for reading another value say, e.g. the value is 1234hex then we get:-

1234Hex * 0.000030517578125 = 0.14221191 and if we convert into degrees then get 0.14221191 * 180 = 25.598144 degrees.

Hope this helps to explan what I am trying to do.
AnswerRe: Data Type Conversions Pin
Luc Pattyn5-Mar-10 11:38
sitebuilderLuc Pattyn5-Mar-10 11:38 
GeneralRe: Data Type Conversions Pin
Andy2025-Mar-10 22:33
Andy2025-Mar-10 22:33 
QuestionHow to receive a file name under the link? Pin
Dima Filipiuk5-Mar-10 0:58
Dima Filipiuk5-Mar-10 0:58 
AnswerRe: How to receive a file name under the link? Pin
David Crow5-Mar-10 7:07
David Crow5-Mar-10 7:07 
QuestionOLE image drag and drop between Tree controls Pin
RakeshManohar5-Mar-10 0:51
RakeshManohar5-Mar-10 0:51 
AnswerRe: OLE image drag and drop between Tree controls Pin
Eugen Podsypalnikov5-Mar-10 1:12
Eugen Podsypalnikov5-Mar-10 1:12 
GeneralRe: OLE image drag and drop between Tree controls Pin
RakeshManohar5-Mar-10 1:18
RakeshManohar5-Mar-10 1:18 
GeneralRe: OLE image drag and drop between Tree controls Pin
Eugen Podsypalnikov5-Mar-10 1:29
Eugen Podsypalnikov5-Mar-10 1:29 
GeneralRe: OLE image drag and drop between Tree controls Pin
RakeshManohar5-Mar-10 2:17
RakeshManohar5-Mar-10 2:17 
QuestionCreateProcess failed Pin
john56325-Mar-10 0:39
john56325-Mar-10 0:39 
AnswerRe: CreateProcess failed Pin
Adam Roderick J5-Mar-10 0:50
Adam Roderick J5-Mar-10 0:50 
GeneralRe: CreateProcess failed Pin
john56325-Mar-10 1:19
john56325-Mar-10 1:19 
GeneralRe: CreateProcess failed Pin
Adam Roderick J5-Mar-10 1:28
Adam Roderick J5-Mar-10 1:28 
GeneralRe: CreateProcess failed Pin
CPallini5-Mar-10 1:55
mveCPallini5-Mar-10 1:55 
GeneralRe: CreateProcess failed Pin
ycc8920095-Mar-10 3:43
ycc8920095-Mar-10 3:43 
GeneralRe: CreateProcess failed Pin
CPallini5-Mar-10 5:23
mveCPallini5-Mar-10 5:23 
AnswerRe: CreateProcess failed Pin
Joe Woodbury5-Mar-10 11:25
professionalJoe Woodbury5-Mar-10 11:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.