Skip to content

Commit

Permalink
fix: Projection SetPlacement calls SetCoefficients
Browse files Browse the repository at this point in the history
One SetPlacement overload doesn't call SetCoefficients, witch causes the Projection to not update.
  • Loading branch information
FreyLuis committed Dec 3, 2024
1 parent ddb68c0 commit f8152cc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions CADability/Projection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -706,6 +706,7 @@ public void SetPlacement(double factor, double dx, double dy)
placementFactor = factor;
placementX = dx;
placementY = dy;
SetCoefficients();
}
/// <summary>
/// Liefert die Werte für die Platzierung. Achtung: die Y-Werte müssen mit dem negativen
Expand Down

0 comments on commit f8152cc

Please sign in to comment.