throw INTERP_KERNEL::Exception("recognize must be called before building any fields");
double *values = buildArea3DArray([](Areas *areas, mcIdType areaId) -> const std::array<double, 3> &
{ return areas->getCenter(areaId); });
- return buildField("Normal (Area)", 3, values);
+ return buildField("Center (Area)", 3, values);
}
MEDCouplingFieldDouble *ShapeRecognMesh::buildAxis() const
throw INTERP_KERNEL::Exception("recognize must be called before building any fields");
double *values = buildArea3DArray([](Areas *areas, mcIdType areaId) -> const std::array<double, 3> &
{ return areas->getApex(areaId); });
- return buildField("Axis (Area)", 3, values);
+ return buildField("Apex (Area)", 3, values);
}
template <typename T>