Jump to content

ARCPARAMS

From EDM2
Revision as of 18:11, 25 May 2024 by Martini (talk | contribs) (Definition)
(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

Example

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

typedef   ARCPARAMS   * PARCPARAMS ;