From 4c4fdbac52cfabdfbe115d0db18689a0ec4f7793 Mon Sep 17 00:00:00 2001 From: Abdullah Tahiri Date: Thu, 14 Mar 2019 19:21:26 +0100 Subject: [PATCH] Correct paramter comments --- src/Mod/Sketcher/Gui/CommandConstraints.cpp | 8 ++++---- src/Mod/Sketcher/Gui/CommandConstraints.h | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Mod/Sketcher/Gui/CommandConstraints.cpp b/src/Mod/Sketcher/Gui/CommandConstraints.cpp index 90d16b2050..d4583d9515 100644 --- a/src/Mod/Sketcher/Gui/CommandConstraints.cpp +++ b/src/Mod/Sketcher/Gui/CommandConstraints.cpp @@ -355,7 +355,7 @@ bool SketcherGui::IsPointAlreadyOnCurve(int GeoIdCurve, int GeoIdPoint, Sketcher } /// Makes a simple tangency constraint using extra point + tangent via point -/// geom1 => an ellipse +/// ellipse => an ellipse /// geom2 => any of an ellipse, an arc of ellipse, a circle, or an arc (of circle) /// NOTE: A command must be opened before calling this function, which this function /// commits or aborts as appropriate. The reason is for compatibility reasons with @@ -420,7 +420,7 @@ void SketcherGui::makeTangentToEllipseviaNewPoint(Sketcher::SketchObject* Obj, } /// Makes a simple tangency constraint using extra point + tangent via point -/// geom1 => an arc of ellipse +/// aoe => an arc of ellipse /// geom2 => any of an arc of ellipse, a circle, or an arc (of circle) /// NOTE: A command must be opened before calling this function, which this function /// commits or aborts as appropriate. The reason is for compatibility reasons with @@ -483,7 +483,7 @@ void SketcherGui::makeTangentToArcOfEllipseviaNewPoint(Sketcher::SketchObject* O } /// Makes a simple tangency constraint using extra point + tangent via point -/// geom1 => an arc of hyperbola +/// aoh => an arc of hyperbola /// geom2 => any of an arc of hyperbola, an arc of ellipse, a circle, or an arc (of circle) /// NOTE: A command must be opened before calling this function, which this function /// commits or aborts as appropriate. The reason is for compatibility reasons with @@ -564,7 +564,7 @@ void SketcherGui::makeTangentToArcOfHyperbolaviaNewPoint(Sketcher::SketchObject* } /// Makes a simple tangency constraint using extra point + tangent via point -/// geom1 => an arc of parabola +/// aop => an arc of parabola /// geom2 => any of an arc of parabola, an arc of hyperbola an arc of ellipse, a circle, or an arc (of circle) /// NOTE: A command must be opened before calling this function, which this function /// commits or aborts as appropriate. The reason is for compatibility reasons with diff --git a/src/Mod/Sketcher/Gui/CommandConstraints.h b/src/Mod/Sketcher/Gui/CommandConstraints.h index 7531fcb633..7ea6482373 100644 --- a/src/Mod/Sketcher/Gui/CommandConstraints.h +++ b/src/Mod/Sketcher/Gui/CommandConstraints.h @@ -55,7 +55,7 @@ bool IsPointAlreadyOnCurve(int GeoIdCurve, int GeoIdPoint, Sketcher::PointPos Po // These functions are declared here to promote code reuse from other modules /// Makes a tangency constraint using external construction line between -/// geom1 => an ellipse +/// ellipse => an ellipse /// geom2 => any of an ellipse, an arc of ellipse, a circle, or an arc (of circle) /// NOTE: A command must be opened before calling this function, which this function /// commits or aborts as appropriate. The reason is for compatibility reasons with @@ -67,7 +67,7 @@ void makeTangentToEllipseviaNewPoint(Sketcher::SketchObject* Obj, int geoId2 ); /// Makes a tangency constraint using external construction line between -/// geom1 => an arc of ellipse +/// aoe => an arc of ellipse /// geom2 => any of an arc of ellipse, a circle, or an arc (of circle) /// NOTE: A command must be opened before calling this function, which this function /// commits or aborts as appropriate. The reason is for compatibility reasons with @@ -80,7 +80,7 @@ void makeTangentToArcOfEllipseviaNewPoint(Sketcher::SketchObject* Obj, ); /// Makes a tangency constraint using external construction line between -/// geom1 => an arc of hyperbola +/// aoh => an arc of hyperbola /// geom2 => any of an arc of hyperbola, an arc of ellipse, a circle, or an arc (of circle) /// NOTE: A command must be opened before calling this function, which this function /// commits or aborts as appropriate. The reason is for compatibility reasons with @@ -93,7 +93,7 @@ void makeTangentToArcOfHyperbolaviaNewPoint(Sketcher::SketchObject* Obj, ); /// Makes a simple tangency constraint using extra point + tangent via point -/// geom1 => an arc of parabola +/// aop => an arc of parabola /// geom2 => any of an arc of parabola, an arc of hyperbola an arc of ellipse, a circle, or an arc (of circle) /// NOTE: A command must be opened before calling this function, which this function /// commits or aborts as appropriate. The reason is for compatibility reasons with