gp_Pnt aPnt1, aPnt2;
if (!getPoints(aPnt1, aPnt2))
return;
- DataPtr aData = myConstraint->data();
-
- AttributePtr aFlyOutAttribute = aData->attribute(SketchPlugin_Constraint::FLYOUT_VALUE_PNT());
- if (!aFlyOutAttribute->isInitialized()) {
- return; // not possible to show length because points are not defined
- }
- std::shared_ptr<GeomDataAPI_Point2D> aFlyOutAttr =
- std::dynamic_pointer_cast<GeomDataAPI_Point2D>(aFlyOutAttribute);
- std::shared_ptr<GeomAPI_Pnt> aFlyoutPnt = myPlane->to3D(aFlyOutAttr->x(), aFlyOutAttr->y());
- gp_Pnt aFlyPnt = aFlyoutPnt->impl<gp_Pnt>();
-
- double aDistance = aPnt1.Distance(aPnt2);
-
- double aFlyout = 0;
- double aDist = 0.0;
- if (aDistance < Precision::Confusion())
- aDist = aPnt1.Distance(aFlyPnt);
- else {
- gp_Lin aLine(aPnt1, gp_Vec(aPnt1, aPnt2));
- aDist = aLine.Distance(aFlyPnt);
- }
-
- gp_XYZ aLineDir = aPnt2.XYZ().Subtracted(aPnt1.XYZ());
- gp_XYZ aFOutDir = aFlyPnt.XYZ().Subtracted(aPnt1.XYZ());
- gp_XYZ aNorm = myPlane->norm()->xyz()->impl<gp_XYZ>();
- if (aLineDir.Crossed(aFOutDir).Dot(aNorm) < 0)
- aDist = -aDist;
- aFlyout = aDist;
-
- SetFlyout(aFlyout);
+ //DataPtr aData = myConstraint->data();
+
+ //AttributePtr aFlyOutAttribute = aData->attribute(SketchPlugin_Constraint::FLYOUT_VALUE_PNT());
+ //if (!aFlyOutAttribute->isInitialized()) {
+ // return; // not possible to show length because points are not defined
+ //}
+ //std::shared_ptr<GeomDataAPI_Point2D> aFlyOutAttr =
+ // std::dynamic_pointer_cast<GeomDataAPI_Point2D>(aFlyOutAttribute);
+ //std::shared_ptr<GeomAPI_Pnt> aFlyoutPnt = myPlane->to3D(aFlyOutAttr->x(), aFlyOutAttr->y());
+ //gp_Pnt aFlyPnt = aFlyoutPnt->impl<gp_Pnt>();
+
+ //double aDistance = aPnt1.Distance(aPnt2);
+
+ //double aFlyout = 0;
+ //double aDist = 0.0;
+ //if (aDistance < Precision::Confusion())
+ // aDist = aPnt1.Distance(aFlyPnt);
+ //else {
+ // gp_Lin aLine(aPnt1, gp_Vec(aPnt1, aPnt2));
+ // aDist = aLine.Distance(aFlyPnt);
+ //}
+
+ //gp_XYZ aLineDir = aPnt2.XYZ().Subtracted(aPnt1.XYZ());
+ //gp_XYZ aFOutDir = aFlyPnt.XYZ().Subtracted(aPnt1.XYZ());
+ //gp_XYZ aNorm = myPlane->norm()->xyz()->impl<gp_XYZ>();
+ //if (aLineDir.Crossed(aFOutDir).Dot(aNorm) < 0)
+ // aDist = -aDist;
+ //aFlyout = aDist;
+
+ //SetFlyout(aFlyout);
+ SetFlyout(SketcherPrs_Tools::getFlyoutDistance(myConstraint, myPlane));
SetMeasuredGeometry(aPnt1, aPnt2, myPlane->impl<gp_Ax3>());
AIS_LengthDimension::Compute(thePresentationManager, thePresentation, theMode);
}
#include "SketcherPrs.h"
#include <GeomAPI_Shape.h>
#include <GeomAPI_Pnt2d.h>
+#include <GeomAPI_Ax3.h>
#include <ModelAPI_Object.h>
#include <ModelAPI_Feature.h>
#include <string>
SKETCHERPRS_EXPORT double getArrowSize();
SKETCHERPRS_EXPORT void setArrowSize(double theSize);
+
+ SKETCHERPRS_EXPORT double getFlyoutDistance(const ModelAPI_Feature* theConstraint,
+ const std::shared_ptr<GeomAPI_Ax3>& thePlane);
};
#endif