You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
37 lines
1.1 KiB
#ifndef __glubezierarc_h
|
|
#define __glubezierarc_h
|
|
|
|
/**************************************************************************
|
|
* *
|
|
* Copyright (C) 1992, Silicon Graphics, Inc. *
|
|
* *
|
|
* These coded instructions, statements, and computer programs contain *
|
|
* unpublished proprietary information of Silicon Graphics, Inc., and *
|
|
* are protected by Federal copyright law. They may not be disclosed *
|
|
* to third parties or copied or duplicated in any form, in whole or *
|
|
* in part, without the prior written consent of Silicon Graphics, Inc. *
|
|
* *
|
|
**************************************************************************/
|
|
|
|
/*
|
|
* bezierarc.h - $Revision: 1.1 $
|
|
*/
|
|
|
|
#include "myassert.h"
|
|
|
|
class Mapdesc;
|
|
|
|
#ifdef NT
|
|
class BezierArc : public PooledObj { /* a bezier arc */
|
|
public:
|
|
#else
|
|
struct BezierArc : public PooledObj { /* a bezier arc */
|
|
#endif
|
|
REAL * cpts; /* control points of arc */
|
|
int order; /* order of arc */
|
|
int stride; /* REAL distance between points */
|
|
long type; /* curve type */
|
|
Mapdesc * mapdesc;
|
|
};
|
|
|
|
#endif /* __glubezierarc_h */
|