d2.h revision ed0798e33e14e86b60f8cd254d7131f9d83ba8c0
/*
* d2.h - Lifts one dimensional objects into 2d
*
* Copyright 2007 Michael Sloan <mgsloan@gmail.com>
*
* modify it either under the terms of the GNU Lesser General Public
* License version 2.1 as published by the Free Software Foundation
* (the "LGPL") or, at your option, under the terms of the Mozilla
* Public License Version 1.1 (the "MPL"). If you do not alter this
* notice, a recipient may use your version of this file under either
* the MPL or the LGPL.
*
* You should have received a copy of the LGPL along with this library
* in the file COPYING-LGPL-2.1; if not, output to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
* You should have received a copy of the MPL along with this library
* in the file COPYING-MPL-1.1
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
* OF ANY KIND, either express or implied. See the LGPL or the MPL for
* the specific language governing rights and limitations.
*
*/
#define _2GEOM_D2
#include "point.h"
#include "interval.h"
#include "matrix.h"
#include <boost/concept_check.hpp>
#include "concepts.h"
//BOOST_CLASS_REQUIRE(T, boost, AssignableConcept);
T f[2];
D2() {f[X] = f[Y] = T();}
f[X] = T(a[X]); f[Y] = T(a[Y]);
}
D2(T const &a, T const &b) {
f[X] = a;
f[Y] = b;
}
//TODO: ask mental about operator= as seen in Point
T& operator[](unsigned i) { return f[i]; }
T const & operator[](unsigned i) const { return f[i]; }
//IMPL: FragmentConcept
typedef Point output_type;
bool isZero() const {
}
bool isFinite() const {
}
}
}
return (*this)(t);
}
y = f[Y].valueAndDerivatives(t, count);
for(unsigned i = 0; i < count; i++) {
}
return res;
}
}
};
}
}
//IMPL: boost::EqualityComparableConcept
inline bool
return a[0]==b[0] && a[1]==b[1];
}
inline bool
return a[0]!=b[0] || a[1]!=b[1];
}
//IMPL: NearConcept
inline bool
}
//IMPL: AddableConcept
inline D2<T>
D2<T> r;
for(unsigned i = 0; i < 2; i++)
r[i] = a[i] + b[i];
return r;
}
inline D2<T>
D2<T> r;
for(unsigned i = 0; i < 2; i++)
r[i] = a[i] - b[i];
return r;
}
inline D2<T>
for(unsigned i = 0; i < 2; i++)
a[i] += b[i];
return a;
}
inline D2<T>
for(unsigned i = 0; i < 2; i++)
a[i] -= b[i];
return a;
}
//IMPL: ScalableConcept
inline D2<T>
D2<T> r;
for(unsigned i = 0; i < 2; i++)
r[i] = -a[i];
return r;
}
inline D2<T>
D2<T> r;
for(unsigned i = 0; i < 2; i++)
r[i] = a[i] * b[i];
return r;
}
inline D2<T>
//TODO: b==0?
D2<T> r;
for(unsigned i = 0; i < 2; i++)
r[i] = a[i] / b[i];
return r;
}
inline D2<T>
for(unsigned i = 0; i < 2; i++)
a[i] *= b[i];
return a;
}
inline D2<T>
//TODO: b==0?
for(unsigned i = 0; i < 2; i++)
a[i] /= b[i];
return a;
}
for(unsigned i = 0; i < 2; i++)
return ret;
}
//IMPL: OffsetableConcept
inline D2<T>
D2<T> r;
for(unsigned i = 0; i < 2; i++)
r[i] = a[i] + b[i];
return r;
}
inline D2<T>
D2<T> r;
for(unsigned i = 0; i < 2; i++)
r[i] = a[i] - b[i];
return r;
}
inline D2<T>
for(unsigned i = 0; i < 2; i++)
a[i] += b[i];
return a;
}
inline D2<T>
for(unsigned i = 0; i < 2; i++)
a[i] -= b[i];
return a;
}
inline T
T r;
for(unsigned i = 0; i < 2; i++)
r += a[i] * b[i];
return r;
}
inline T
return a[1] * b[0] - a[0] * b[1];
}
inline D2<T>
return D2<T>(-a[Y], a[X]);
}
//TODO: concepterize the following functions
inline D2<T>
D2<T> r;
for(unsigned i = 0; i < 2; i++)
r[i] = compose(a[i],b);
return r;
}
inline D2<T>
D2<T> r;
for(unsigned i = 0; i < 2; i++)
r[i] = compose(a[i],b[i]);
return r;
}
inline D2<T>
compose_each(T const & a, D2<T> const & b) {
D2<T> r;
for(unsigned i = 0; i < 2; i++)
r[i] = compose(a,b[i]);
return r;
}
inline Point
Point p;
for(unsigned i = 0; i < 2; i++)
p[i] = (*this)[i](t);
return p;
}
//TODO: we might want to have this take a Point as the parameter.
inline Point
Point p;
for(unsigned i = 0; i < 2; i++)
p[i] = (*this)[i](x, y);
return p;
}
}
}
} //end namespace Geom
#include "rect.h"
#include "d2-sbasis.h"
//Some D2 Fragment implementation which requires rect:
}
}
}
};
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
#endif