24 using namespace Eigen;
63 p << this->px, this->py, this->pz;
70 n << this->nx, this->ny, this->nz;
77 Eigen::IOFormat vecfmt(Eigen::FullPrecision, 0,
"",
", ",
"",
"",
"(",
")");
79 s << positionToEigen().format(vecfmt) <<
", " << normalToEigen().format(vecfmt);
87 obj->setFloat(
"px", px);
88 obj->setFloat(
"py", py);
89 obj->setFloat(
"pz", pz);
91 obj->setFloat(
"nx", nx);
92 obj->setFloat(
"ny", ny);
93 obj->setFloat(
"nz", nz);
100 px = obj->getFloat(
"px");
101 py = obj->getFloat(
"py");
102 pz = obj->getFloat(
"pz");
104 nx = obj->getFloat(
"nx");
105 ny = obj->getFloat(
"ny");
106 nz = obj->getFloat(
"nz");