24 using namespace Eigen;
68 p << this->px, this->py, this->pz;
76 n << this->nx, this->ny, this->nz;
83 Eigen::IOFormat vecfmt(Eigen::FullPrecision, 0,
"",
", ",
"",
"",
"(",
")");
85 s << positionToEigen().format(vecfmt) <<
", " << normalToEigen().format(vecfmt);
94 obj->setFloat(
"px", px);
95 obj->setFloat(
"py", py);
96 obj->setFloat(
"pz", pz);
98 obj->setFloat(
"nx", nx);
99 obj->setFloat(
"ny", ny);
100 obj->setFloat(
"nz", nz);
108 px = obj->getFloat(
"px");
109 py = obj->getFloat(
"py");
110 pz = obj->getFloat(
"pz");
112 nx = obj->getFloat(
"nx");
113 ny = obj->getFloat(
"ny");
114 nz = obj->getFloat(
"nz");