source: git/src/vector3.h @ 087bc72

RELEASE/1.1RELEASE/1.2debug-cidebug-ci-sanitisersfaster-cavernloglog-selectstereostereo-2025walls-datawalls-data-hanging-as-warningwarn-only-for-hanging-survey
Last change on this file since 087bc72 was 97d93e1, checked in by Olly Betts <olly@…>, 23 years ago

Made appropriate methods const.

git-svn-id: file:///home/survex-svn/survex/branches/survex-1_1@2072 4b37db11-9a0c-4f06-9ece-9ab7cdaee568

  • Property mode set to 100644
File size: 2.2 KB
Line 
1//
2//  vector3.h
3//
4//  C++ class for 3-element vectors
5//
6//  Copyright (C) 2000-2002, Mark R. Shinwell.
7//  Copyright (C) 2002 Olly Betts
8//
9//  This program is free software; you can redistribute it and/or modify
10//  it under the terms of the GNU General Public License as published by
11//  the Free Software Foundation; either version 2 of the License, or
12//  (at your option) any later version.
13//
14//  This program is distributed in the hope that it will be useful,
15//  but WITHOUT ANY WARRANTY; without even the implied warranty of
16//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17//  GNU General Public License for more details.
18//
19//  You should have received a copy of the GNU General Public License
20//  along with this program; if not, write to the Free Software
21//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22//
23
24#ifndef Vector3_h
25#define Vector3_h
26
27#include <stdio.h>
28
29class Vector3 {
30    double x; //--FIXME
31    double y;
32    double z;
33
34public:
35    Vector3();
36    Vector3(double, double, double);
37    ~Vector3();
38
39    void Save(FILE* fp) const { //--Pres: FIXME
40        fwrite(&x, sizeof(double), 1, fp);
41        fwrite(&y, sizeof(double), 1, fp);
42        fwrite(&z, sizeof(double), 1, fp);
43    }
44
45    void Load(FILE* fp) { //--Pres: FIXME
46        fread(&x, sizeof(double), 1, fp);
47        fread(&y, sizeof(double), 1, fp);
48        fread(&z, sizeof(double), 1, fp);
49    }
50
51    double getX() const { return x; }
52    double getY() const { return y; }
53    double getZ() const { return z; }
54
55    double magnitude() const;
56    void normalise();
57
58    void set(double, double, double);
59
60    friend Vector3 operator-(const Vector3& v) {
61        Vector3 o;
62        o.x = -v.x;
63        o.y = -v.y;
64        o.z = -v.z;
65        return o;
66    }
67    Vector3& operator*=(const double);
68    Vector3& operator/=(const double);
69    Vector3& operator=(const Vector3&);
70
71    friend Vector3 operator*(const Vector3&, const double);
72    friend Vector3 operator*(const double, const Vector3&);
73    friend Vector3 operator*(const Vector3&, const Vector3&); // cross product
74    friend Vector3 operator+(const Vector3&, const Vector3&);
75    friend Vector3 operator-(const Vector3&, const Vector3&);
76    friend double dot(const Vector3&, const Vector3&);
77};
78
79#endif
Note: See TracBrowser for help on using the repository browser.