From 2a1b38e1e9690adebc24aa4ec5f8c164b900b308 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 22 Oct 2024 10:03:34 -0400 Subject: [PATCH] spelling: segment Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- .../src/com/jpexs/decompiler/flash/math/BezierUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/math/BezierUtils.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/math/BezierUtils.java index e140b977e..c64328286 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/math/BezierUtils.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/math/BezierUtils.java @@ -350,7 +350,7 @@ public class BezierUtils { return t; } - // compute intersection of line segnet from first to last control point with horizontal axis + // compute intersection of line segment from first to last control point with horizontal axis private double computeXIntercept(List _v, int _degree) { double XNM = _v.get(_degree).getX() - _v.get(0).getX(); double YNM = _v.get(_degree).getY() - _v.get(0).getY();