Jump to content

ARCPARAMS: Difference between revisions

From EDM2
Ak120 (talk | contribs)
mNo edit summary
Ak120 (talk | contribs)
Line 15: Line 15:
;lR : R coefficient
;lR : R coefficient
;lS : S coefficient
;lS : S coefficient
== Example Code ==
<PRE>
typedef struct _ARCPARAMS {
  LONG    lP;  /*  P coefficient. */
  LONG    lQ;  /*  Q coefficient. */
  LONG    lR;  /*  R coefficient. */
  LONG    lS;  /*  S coefficient. */
} ARCPARAMS;
typedef  ARCPARAMS * PARCPARAMS ;
</PRE>


[[Category:Data type]]
[[Category:Data type]]

Revision as of 05:29, 21 February 2020

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