blob: f18ebe8219799e6f4ceaf930d49b0844d99726a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
$NetBSD: patch-ad,v 1.4 2011/11/25 21:50:31 joerg Exp $
--- lib3d/xform.h.orig 1999-09-03 02:25:19.000000000 +0000
+++ lib3d/xform.h
@@ -7,11 +7,12 @@
#define TRANSFORM_h
-#include <iostream.h>
+#include <iostream>
#include "general.h"
#include "pt3d.h"
#include "ang3d.h"
+using namespace std;
//==========================================================================
// Transformation matrix classes
@@ -64,6 +65,7 @@ class tcomp {
//===========================================================================
class tmtrx {
+ friend struct player;
typedef double fourby3[4][3];
fourby3 m;
|