From 36457a7204b5f8c57cddcf43b36054c65a204489 Mon Sep 17 00:00:00 2001 From: ParkSuMin Date: Wed, 10 Dec 2025 20:56:45 +0300 Subject: [PATCH] Revert changes Not names --- GCS/Geo.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/GCS/Geo.h b/GCS/Geo.h index b822cdd..cf94c87 100644 --- a/GCS/Geo.h +++ b/GCS/Geo.h @@ -174,10 +174,6 @@ public: class Curve { public: - // start in Arc - Point* start_ref; - // end in Arc - Point* end_ref; virtual ~Curve() {} // returns normal vector. The vector should point to the left when one @@ -233,6 +229,8 @@ public: Point p1; Point p2; + Point* start_ref; + Point* end_ref; DeriVector2 CalculateNormal(const Point& p, const double* derivparam = nullptr) const override; DeriVector2 Value(double u, double du, const double* derivparam = nullptr) const override; int PushOwnParams(VEC_pD& pvec) override;