Change links to Global scope

This commit is contained in:
WandererFan
2017-09-21 18:03:52 -04:00
committed by Yorik van Havre
parent 310fdab492
commit 6d032f1bcf
10 changed files with 20 additions and 25 deletions

View File

@@ -48,7 +48,7 @@ class MeasureExport Measurement : public Base::BaseClass {
TYPESYSTEM_HEADER();
public:
App::PropertyLinkSubList References3D;
App::PropertyLinkSubListGlobal References3D;
public:
Measurement();
@@ -70,13 +70,13 @@ public:
public:
// Methods for distances (edge length, two points, edge and a point
double length() const;
Base::Vector3d delta() const;
Base::Vector3d delta() const; //when would client use delta??
// Calculates the radius for an arc or circular edge
double radius() const;
// Calculates the angle between two edges
double angle(const Base::Vector3d &param = Base::Vector3d(0,0,0)) const;
double angle(const Base::Vector3d &param = Base::Vector3d(0,0,0)) const; //param is never used???
// Calculate volumetric/mass properties
Base::Vector3d massCenter() const;