Kaydet (Commit) bed6ac7d authored tarafından Armin Le Grand's avatar Armin Le Grand Kaydeden (comit) Caolán McNamara

Small vector calculation correction

(cherry picked from commit 18b55ee4)

Change-Id: Ia3b07633ffd7fa9d835570fbeed332c02e478bc0
üst f3242bc0
......@@ -720,7 +720,7 @@ namespace basegfx
if(0.0 != fCutPos)
{
const B2DPoint aCutPoint(interpolate(aStartPoint, aStartPoint + rTangentPrev, fCutPos));
const B2DPoint aCutPoint(aStartPoint + (rTangentPrev * fCutPos));
aEdgePolygon.append(aCutPoint);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment