Jump to content

ARCPARAMS: Difference between revisions

From EDM2
No edit summary
 
Line 16: Line 16:
;lS : S coefficient
;lS : S coefficient


== Definition==  
== Example==  
<PRE>
<PRE>
typedef struct _ARCPARAMS {
typedef struct _ARCPARAMS {

Latest revision as of 18:11, 25 May 2024

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 ;