Hi again,
could anyone help me with some C++ translations!
in c++ i have: float *mydouble
and in delphi i try to use:
type
float : Single
PFloat : PSingle
PPFloat : ^PFloat
what i'm not sure about is if:
float *mydouble (c++) is the same that var myfloat : PPFloat or and array of Float!
another thing i quite don't undestand is the difference of:
float *inputs & float* inputs, and how they are converted to delphi;
keeping in translations, here is more :-D:
what is the similar convention in delphi when you have something like in C++: if ( myBPM < 4.0f )
and finnaly
what's the meaning and how to translate it to delphi:
Value = val2 < .5f ? 1.f : 0.f;
thank you very much!
Best Regards
could anyone help me with some C++ translations!
in c++ i have: float *mydouble
and in delphi i try to use:
type
float : Single
PFloat : PSingle
PPFloat : ^PFloat
what i'm not sure about is if:
float *mydouble (c++) is the same that var myfloat : PPFloat or and array of Float!
another thing i quite don't undestand is the difference of:
float *inputs & float* inputs, and how they are converted to delphi;
keeping in translations, here is more :-D:
what is the similar convention in delphi when you have something like in C++: if ( myBPM < 4.0f )
and finnaly
what's the meaning and how to translate it to delphi:
Value = val2 < .5f ? 1.f : 0.f;
thank you very much!
Best Regards