-
Notifications
You must be signed in to change notification settings - Fork 1
/
3dXFDraw.h
36 lines (33 loc) · 1020 Bytes
/
3dXFDraw.h
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
/*****************************************************************************
* file: "3dXFDrawing.h"
*
* ©1990 Mark M. Owen. All rights reserved.
*****************************************************************************
*/
#ifndef _3dXFDrawing_
#define _3dXFDrawing_
#include "3dExtern.h"
#if XVT_CC_PROTO
void xfDrawPt (Point3d*, Matrix3D*);
void xfDraw3dPt (Fixed, Fixed, Fixed, Matrix3D*);
void xfMovetoPt (Point3d*, Matrix3D*);
void xfMoveto3d (Fixed, Fixed, Fixed, Matrix3D*);
void xfMove3d (Fixed, Fixed, Fixed, Matrix3D*);
void xfLine3d (Fixed, Fixed, Fixed, Matrix3D*);
void xfLinetoPt (Point3d*, Matrix3D*);
void xfLineto3d (Fixed, Fixed, Fixed, Matrix3D*);
void xfDraw3dLine (Fixed, Fixed, Fixed, Fixed, Fixed, Fixed, Matrix3D*);
void xfPolyline3d (int, Point3d*, Matrix3D*);
#else
void xfDrawPt ();
void xfDraw3dPt ();
void xfMovetoPt ();
void xfMoveto3d ();
void xfMove3d ();
void xfLine3d ();
void xfLinetoPt ();
void xfLineto3d ();
void xfDraw3dLine ();
void xfPolyline3d ();
#endif
#endif