45 :
a_(n.x()),
b_(n.y()),
c_(n.z()),
d_(-n*p) {}
77 T
a()
const {
return a_; }
80 T
b()
const {
return b_; }
83 T
c()
const {
return c_; }
86 T
d()
const {
return d_; }
96 if (ll > 0.) {
a_ /= ll;
b_ /= ll; c_ /= ll,
d_ /= ll; }
103 return a()*p.
x() +
b()*p.
y() +
c()*p.
z() +
d();
116 T k = -
d()/(
a()*
a()+
b()*
b()+
c()*
c());
123 return a() == p.
a() &&
b() == p.
b() &&
c() == p.
c() &&
d() == p.
d();
129 return a() != p.
a() ||
b() != p.
b() ||
c() != p.
c() ||
d() != p.
d();
146 std::ostream & operator<<(std::ostream & os, const Plane3D<float> &
p);
152 std::ostream & operator<<(std::ostream & os, const Plane3D<double> &
p);
bool operator==(const Plane3D< T > &p) const
Normal3D< T > normal() const
Plane3D(const Normal3D< T > &n, const Point3D< T > &p)
static constexpr double m
Point3D< T > point(const Point3D< T > &p) const
Plane3D(const Point3D< T > &p1, const Point3D< T > &p2, const Point3D< T > &p3)
bool operator!=(const Plane3D< T > &p) const
Plane3D< T > & operator=(const Plane3D< T > &p)
Plane3D< T > & normalize()
Plane3D(T a1, T b1, T c1, T d1)
Plane3D< T > & transform(const Transform3D &m)
Point3D< T > point() const
T distance(const Point3D< T > &p) const
Plane3D(const Plane3D< float > &p)