+ fix flaws in class PropertyVectorDistance

This commit is contained in:
wmayer 2015-09-01 13:49:01 +02:00
parent 86a7ed44e0
commit 9846e52ed9

View File

@ -117,24 +117,9 @@ public:
*/
virtual ~PropertyVectorDistance();
/** Sets the property
*/
void setValue(const Base::Vector3d &vec);
void setValue(double x, double y, double z);
/** This method returns a string representation of the property
*/
const Base::Vector3d &getValue(void) const;
const char* getEditorName(void) const {
return "Gui::PropertyEditor::PropertyVectorDistanceItem";
}
virtual unsigned int getMemSize (void) const {
return sizeof(Base::Vector3d);
}
private:
Base::Vector3d _cVec;
};