gzdoom-gles/src/m_bbox.h
Randy Heit f2660dc336 - Merged the GC branch back into the trunk, so now it can receive more
testing from the people who download SVN trunk builds.

SVN r795 (trunk)
2008-03-12 02:56:11 +00:00

57 lines
1.3 KiB
C++

// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id:$
//
// Copyright (C) 1993-1996 by id Software, Inc.
//
// This source is available for distribution and/or modification
// only under the terms of the DOOM Source Code License as
// published by id Software. All rights reserved.
//
// The source is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// FITNESS FOR A PARTICULAR PURPOSE. See the DOOM Source Code License
// for more details.
//
// DESCRIPTION:
// Nil.
//
//-----------------------------------------------------------------------------
#ifndef __M_BBOX_H__
#define __M_BBOX_H__
#include "doomtype.h"
#include "m_fixed.h"
// Bounding box coordinate storage.
enum
{
BOXTOP,
BOXBOTTOM,
BOXLEFT,
BOXRIGHT
}; // bbox coordinates
class FBoundingBox
{
public:
FBoundingBox();
void ClearBox ();
void AddToBox (fixed_t x, fixed_t y);
inline fixed_t Top () { return m_Box[BOXTOP]; }
inline fixed_t Bottom () { return m_Box[BOXBOTTOM]; }
inline fixed_t Left () { return m_Box[BOXLEFT]; }
inline fixed_t Right () { return m_Box[BOXRIGHT]; }
protected:
fixed_t m_Box[4];
};
#endif //__M_BBOX_H__