Jump to content

ARCPARAMS: Difference between revisions

From EDM2
Created page with "Arc-parameters structure. == Type == LONG lP; LONG lQ; LONG lR; LONG lS; == C Declaration Method == typedef struct == Fields == ; lP : P coeffi..."
 
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Arc-parameters structure.  
Arc-parameters structure.


== Type ==
== Type ==
  LONG    lP;
LONG    lP;
  LONG    lQ;
LONG    lQ;
  LONG    lR;
LONG    lR;
  LONG    lS;
LONG    lS;
 
 
== C Declaration Method ==
== C Declaration Method ==
  typedef struct
  typedef struct


== Fields ==
== Fields ==
; lP : P coefficient.
;lP : P coefficient
; lQ : Q coefficient.
;lQ : Q coefficient
; lR : R coefficient.
;lR : R coefficient
; lS : S coefficient.
;lS : S coefficient
 
== Remarks ==


== Example Code ==
== Example==  
<PRE>
<PRE>
typedef struct _ARCPARAMS {
typedef struct _ARCPARAMS {
Line 28: Line 26:


typedef  ARCPARAMS  * PARCPARAMS ;
typedef  ARCPARAMS  * PARCPARAMS ;
</PRE>
</PRE>


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

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 ;