From 3bd383baf6a17e734329e1fc677c7e86283db772 Mon Sep 17 00:00:00 2001 From: Chris Xiong Date: Mon, 26 Oct 2015 22:52:36 +0800 Subject: Added support for relative line numbers. Added instructions for, brk and cont. (They are still untested...) Parser code cleanup. Removed garbage output to stderr. Reorganize the repository structure. Updated BLR2 code move it into archive. Added BLR1 files. --- hgehelp/hgerect.cpp | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 hgehelp/hgerect.cpp (limited to 'hgehelp/hgerect.cpp') diff --git a/hgehelp/hgerect.cpp b/hgehelp/hgerect.cpp deleted file mode 100644 index 303286c..0000000 --- a/hgehelp/hgerect.cpp +++ /dev/null @@ -1,45 +0,0 @@ -/* -** Haaf's Game Engine 1.7 -** Copyright (C) 2003-2007, Relish Games -** hge.relishgames.com -** -** hgeRect helper class implementation -*/ - - -#include "hgerect.h" -#include - - -void hgeRect::Encapsulate(float x, float y) -{ - if(bClean) - { - x1=x2=x; - y1=y2=y; - bClean=false; - } - else - { - if(xx2) x2=x; - if(yy2) y2=y; - } -} - -bool hgeRect::TestPoint(float x, float y) const -{ - if(x>=x1 && x=y1 && yx1 - rect->x2) < (x2 - x1 + rect->x2 - rect->x1)) - if(fabs(y1 + y2 - rect->y1 - rect->y2) < (y2 - y1 + rect->y2 - rect->y1)) - return true; - - return false; -} -- cgit v1.2.3