Jump to content

ARCPARAMS

From EDM2
Revision as of 23:13, 14 March 2018 by Ak120 (talk | contribs)

Arc-parameters structure.

Type

LONG     lP;
LONG     lQ;
LONG     lR;
LONG     lS;
  

C Declaration Method

typedef struct

Fields

lP
P coefficient.
lQ
Q coefficient.
lR
R coefficient.
lS
S coefficient.

Example Code

typedef struct _ARCPARAMS {
  LONG     lP;  /*  P coefficient. */
  LONG     lQ;  /*  Q coefficient. */
  LONG     lR;  /*  R coefficient. */
  LONG     lS;  /*  S coefficient. */
} ARCPARAMS;

typedef   ARCPARAMS * PARCPARAMS ;