-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path3dQuad.h
34 lines (27 loc) · 1015 Bytes
/
3dQuad.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
/*****************************************************************************
* File: 3dQuadratics.h
*
* © 1990 Mark M. Owen. All rights reserved.
*****************************************************************************
*/
#ifndef _3dQuadratics_
#define _3dQuadratics_
#if (XVTWS != XOLWS)
#include "3dSolids.h"
#endif
#if XVT_CC_PROTO
typedef void (*pFunction)(Point3d, Point3d, Point3d, Point3d, Matrix3D*);
int xfWireFrameSphere (int, int, Fixed, Fixed, Matrix3D*, pFunction);
int SolidSphere (int, int, Fixed, Fixed, BOOLEAN, pGroup, int, RendAttr, Matrix3D*);
int SolidUnitSphere (Fixed segs, pGroup pG, int ixP, RendAttr raOptions, Matrix3D *xf);
int SolidCylinder (int, Fixed, Fixed, Fixed, Fixed, BOOLEAN, pGroup, int, RendAttr, Matrix3D*);
int SolidCone (int, Fixed, Fixed, Fixed, BOOLEAN, pGroup, int, RendAttr, Matrix3D*);
#else
typedef void (*pFunction)();
int xfWireFrameSphere ();
int SolidSphere ();
int SolidUnitSphere ();
int SolidCylinder ();
int SolidCone ();
#endif
#endif