Skip to content

Commit

Permalink
Fix compilation issue in Attacher code
Browse files Browse the repository at this point in the history
  • Loading branch information
ickby committed Apr 12, 2016
1 parent cd2da9f commit 4119bb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Part/App/Attacher.cpp
Expand Up @@ -985,7 +985,7 @@ Base::Placement AttachEngine3D::calculateAttachedPlacement(Base::Placement origP

Handle (Geom_Curve) hCurve = BRep_Tool::Curve(path, u1, u2);

GeomAPI_ProjectPointOnCurve projector = GeomAPI_ProjectPointOnCurve (p_in, hCurve);
GeomAPI_ProjectPointOnCurve projector (p_in, hCurve);
u = projector.LowerDistanceParameter();
} else {
u = u1 + this->attachParameter * (u2 - u1);
Expand Down

0 comments on commit 4119bb7

Please sign in to comment.