23 #ifndef GENERALEQUATIONOFPLANE_H 24 #define GENERALEQUATIONOFPLANE_H 27 #include "../cgal_types.h" 38 std::vector<GEOM_RT> v;
42 inline const GEOM_RT &a(
void)
const 44 inline const GEOM_RT &b(
void)
const 46 inline const GEOM_RT &c(
void)
const 48 inline const GEOM_RT &d(
void)
const 50 GEOM_FT Eval(
const Pos3d &p)
const;
52 GEOM_FT
x(
const GEOM_FT &
y,
const GEOM_FT &
z)
const;
53 GEOM_FT
x(
const Pos2d &p)
const;
54 GEOM_FT
y(
const GEOM_FT &x,
const GEOM_FT &z)
const;
55 GEOM_FT
y(
const Pos2d &p)
const;
56 GEOM_FT
z(
const GEOM_FT &x,
const GEOM_FT &y)
const;
57 GEOM_FT
z(
const Pos2d &p)
const;
GEOM_FT y(const GEOM_FT &x, const GEOM_FT &z) const
Return the y coordinate del point of the plane whose x and z coordinates are given.
Definition: GeneralEquationOfPlane.cc:56
Posición en dos dimensiones.
Definition: Pos2d.h:41
GEOM_FT z(const GEOM_FT &x, const GEOM_FT &y) const
Return the z coordinate del point of the plane whose x and y coordinates are given.
Definition: GeneralEquationOfPlane.cc:66
Equation for a plane in general form: ax + by + cz + d = 0 where v[0]= d, v[1]= a, v[2]= b, v[3]= c.
Definition: GeneralEquationOfPlane.h:36
GEOM_FT x(const GEOM_FT &y, const GEOM_FT &z) const
Return the x coordinate of the point of the plane whose y and z coordinates are given.
Definition: GeneralEquationOfPlane.cc:46
Posición en tres dimensiones.
Definition: Pos3d.h:44