Skip to content

Commit

Permalink
Refactor|Partitioner: Completed dismantling Intersections
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed Apr 25, 2013
1 parent 3b5e060 commit 3823296
Show file tree
Hide file tree
Showing 5 changed files with 101 additions and 224 deletions.
1 change: 0 additions & 1 deletion doomsday/client/client.pro
Expand Up @@ -227,7 +227,6 @@ DENG_HEADERS += \
include/map/bsp/hedgeinfo.h \
include/map/bsp/hedgeintercept.h \
include/map/bsp/hedgetip.h \
include/map/bsp/intersections.h \
include/map/bsp/lineinfo.h \
include/map/bsp/partitioncost.h \
include/map/bsp/partitioner.h \
Expand Down
14 changes: 14 additions & 0 deletions doomsday/client/include/map/bsp/hedgeintercept.h
Expand Up @@ -56,6 +56,20 @@ struct HEdgeIntercept
Sector *before;
Sector *after;

HEdgeIntercept()
: vertex(0),
selfRef(false),
before(0),
after(0)
{}

HEdgeIntercept(HEdgeIntercept const &other)
: vertex(other.vertex),
selfRef(other.selfRef),
before(other.before),
after(other.after)
{}

#ifdef DENG_DEBUG
void debugPrint() const
{
Expand Down
173 changes: 0 additions & 173 deletions doomsday/client/include/map/bsp/intersections.h

This file was deleted.

0 comments on commit 3823296

Please sign in to comment.