~ubuntu-branches/ubuntu/intrepid/enigma/intrepid

« back to all changes in this revision

Viewing changes to src/px/math.cc

  • Committer: Bazaar Package Importer
  • Author(s): Erich Schubert
  • Date: 2005-08-28 15:30:09 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050828153009-sky64kb6tcq37xt5
Tags: 0.92.1-1
* New upstream subversion checkout
* Remove menu.s3m, which we are allowed to distributed but not to modify
  also copyright notice is confusing... (Closes: #321669)
* Rebuild with new libzipios (Closes: #325405)
  I hope this works without a versioned build-dependency
* Added "enigma replaces enigma-data" for upgrades (Closes: #308558)
* Added notes about the fonts copyright.
* updated to policy 3.6.2.1 (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//======================================================================
2
 
// Copyright (C) 2002 Daniel Heck
3
 
//
4
 
// This program is free software; you can redistribute it and/or
5
 
// modify it under the terms of the GNU General Public License
6
 
// as published by the Free Software Foundation; either version 2
7
 
// of the License, or (at your option) any later version.
8
 
//  
9
 
// This program is distributed in the hope that it will be useful,
10
 
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
// GNU General Public License for more details.
13
 
//  
14
 
// You should have received a copy of the GNU General Public License along
15
 
// with this program; if not, write to the Free Software Foundation, Inc.,
16
 
// 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
17
 
//======================================================================
18
 
#include <iostream>
19
 
#include "math.hh"
20
 
namespace px
21
 
{
22
 
    std::ostream& operator<<(std::ostream& os, const V3 & v)
23
 
    {
24
 
        return os << "(" << v[0] << "," << v[1] << "," << v[2] << ")";
25
 
    }
26
 
    std::ostream& operator<<(std::ostream& os, const V2 & v)
27
 
    {
28
 
        return os << "(" << v[0] << "," << v[1] << ")";
29
 
    }
30
 
}