mirror of
https://github.com/tribes2/engine.git
synced 2026-01-19 19:24:45 +00:00
18 lines
468 B
C
18 lines
468 B
C
//-----------------------------------------------------------------------------
|
|
// V12 Engine
|
|
//
|
|
// Copyright (c) 2001 GarageGames.Com
|
|
// Portions Copyright (c) 2001 by Sierra Online, Inc.
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef _WINDINGCLIPPER_H_
|
|
#define _WINDINGCLIPPER_H_
|
|
|
|
#ifndef _MMATH_H_
|
|
#include "Math/mMath.h"
|
|
#endif
|
|
|
|
void sgUtil_clipToPlane(Point3F* points, U32& rNumPoints, const PlaneF& rPlane);
|
|
|
|
#endif
|