Jump to content

GRADIENTL

From EDM2
Revision as of 17:11, 8 February 2020 by Martini (talk | contribs) (Created page with "Direction-vector structure. ==Type== LONG x; LONG y; ==C Declaration Method== typedef struct ==Fields== ;x (LONG) :X-component of direction. ;y (LONG) :Y-compon...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Direction-vector structure.

Type

 LONG     x;
 LONG     y;

C Declaration Method

typedef struct

Fields

x (LONG)
X-component of direction.
y (LONG)
Y-component of direction.

Example Code

typedef struct _GRADIENTL {
  LONG     x;  /*  X-component of direction. */
  LONG     y;  /*  Y-component of direction. */
} GRADIENTL;

typedef GRADIENTL *PGRADIENTL;