Jump to content

ARCPARAMS

From EDM2
Revision as of 23:06, 17 August 2017 by Martini (talk | contribs) (Created page with "Arc-parameters structure. == Type == LONG lP; LONG lQ; LONG lR; LONG lS; == C Declaration Method == typedef struct == Fields == ; lP : P coeffi...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.

Remarks

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 ;