Move source to src.

This commit is contained in:
Mike Bostock 2012-12-14 10:06:18 -08:00
parent 6f246722f9
commit 2442efc1a6
82 changed files with 13 additions and 236 deletions

11
src/portal.cpp Normal file
View file

@ -0,0 +1,11 @@
// -*- C++ -*-
#include "physics/vector.h"
#include "portal.h"
using namespace mbostock;
Portal::Portal(const Vector& min, const Vector& max,
int room, int origin, bool reset)
: box_(min, max), room_(room), origin_(origin), reset_(reset) {
}