+ view provider for scattered and organized point clouds

This commit is contained in:
wmayer
2016-02-21 13:52:17 +01:00
parent 7bdecf9b38
commit 24e4e08be5
6 changed files with 271 additions and 79 deletions

View File

@@ -54,6 +54,11 @@ Feature::~Feature()
{
}
short Feature::mustExecute() const
{
return 0;
}
App::DocumentObjectExecReturn *Feature::execute(void)
{
this->Points.touch();
@@ -95,8 +100,8 @@ PROPERTY_SOURCE(Points::Organized, Points::Feature)
Organized::Organized()
{
ADD_PROPERTY_TYPE(Width,(1),"Width",App::Prop_ReadOnly,"Width");
ADD_PROPERTY_TYPE(Height,(1),"Height",App::Prop_ReadOnly,"Height");
ADD_PROPERTY_TYPE(Width,(1),"Organized points",App::Prop_ReadOnly,"Width of the frame");
ADD_PROPERTY_TYPE(Height,(1),"Organized points",App::Prop_ReadOnly,"Height of the frame");
}
Organized::~Organized()