mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2025-01-26 02:07:26 +00:00
screw this
This commit is contained in:
parent
a3421c323d
commit
b9d7d3e9fe
1 changed files with 3 additions and 2 deletions
|
@ -21,6 +21,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
#ifndef BBGE_VECTOR_H
|
||||
#define BBGE_VECTOR_H
|
||||
|
||||
#include <stddef.h>
|
||||
#include <cmath>
|
||||
#include <float.h>
|
||||
#include <vector>
|
||||
|
@ -433,8 +434,8 @@ struct InterpolatedVectorData
|
|||
class InterpolatedVector : public Vector
|
||||
{
|
||||
public:
|
||||
InterpolatedVector(scalar_t a = 0, scalar_t b = 0, scalar_t c = 0) : Vector(a,b,c), data(0) {}
|
||||
InterpolatedVector(const Vector &vec) : Vector(vec), data(0) {}
|
||||
InterpolatedVector(scalar_t a = 0, scalar_t b = 0, scalar_t c = 0) : Vector(a,b,c), data(NULL) {}
|
||||
InterpolatedVector(const Vector &vec) : Vector(vec), data(NULL) {}
|
||||
~InterpolatedVector() {delete data;}
|
||||
|
||||
InterpolatedVector(const InterpolatedVector &vec)
|
||||
|
|
Loading…
Reference in a new issue