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..."
 
Ak120 (talk | contribs)
mNo edit summary
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 ==
Line 11: Line 11:


== 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 Code ==
Line 27: Line 25:
} ARCPARAMS;
} ARCPARAMS;


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


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

Revision as of 23:13, 14 March 2018

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 Code

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

typedef   ARCPARAMS * PARCPARAMS ;