+ removed unneeded pure virtual method getFaces from PropertyComplexGeoData

+ extend interface of ComplexGeoData::getPoints to also return normals if available
This commit is contained in:
wmayer
2016-03-04 17:16:57 +01:00
parent c3075a49e5
commit d962fda983
16 changed files with 24 additions and 56 deletions

View File

@@ -76,13 +76,6 @@ Base::BoundBox3d PropertyPointKernel::getBoundingBox() const
return box;
}
void PropertyPointKernel::getFaces(std::vector<Base::Vector3d> &Points,
std::vector<Data::ComplexGeoData::Facet> &Topo,
float Accuracy, uint16_t flags) const
{
_cPoints->getFaces(Points, Topo, Accuracy, flags);
}
PyObject *PropertyPointKernel::getPyObject(void)
{
PointsPy* points = new PointsPy(&*_cPoints);