-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathARROW.H
More file actions
39 lines (35 loc) · 1.64 KB
/
Copy pathARROW.H
File metadata and controls
39 lines (35 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* ========================================================================
Copyright (c) 1990,1995 Synergistic Software
All Rights Reserved.
=======================================================================
Filename: ARROW.H -data for the arrow in the automap
Author: Chris Phillips
======================================================================== */
/* ------------------------------------------------------------------------
Includes
------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------
Defines and Compile Flags
------------------------------------------------------------------------ */
#define NUM_ARROW_VERTS 4
#define ARROW_SIZE 2
#define ARROW_COLOR (13*16)
/* ------------------------------------------------------------------------
Macros
------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------
Prototypes
------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------
Global Variables
------------------------------------------------------------------------ */
POINT arrow_points[]={
{0*ARROW_SIZE,-10*ARROW_SIZE}, /*shaft*/
{0*ARROW_SIZE, 10*ARROW_SIZE},
{-5*ARROW_SIZE, -10*ARROW_SIZE}, /*head*/
{5*ARROW_SIZE, -10*ARROW_SIZE},
{5*ARROW_SIZE, -10*ARROW_SIZE},
{0*ARROW_SIZE, -15*ARROW_SIZE},
{0*ARROW_SIZE, -15*ARROW_SIZE},
{-5*ARROW_SIZE, -10*ARROW_SIZE},
};