From 4988f307ac51142bc0cfb2e89f38703057200590 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 28 Aug 2026 14:14:04 +0000 Subject: [PATCH 1/2] Initial plan From 7600f3b0439564e729a5031ee08ecd9d72d56fa1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 28 Aug 2026 14:14:45 +0000 Subject: [PATCH 2/2] Enable pushing RigidConstraint by adding it to type routing in _ToGsa.cs Co-authored-by: staintono <62057195+staintono@users.noreply.github.com> --- GSA_Adapter/Convert/ToGsa/_ToGsa.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/GSA_Adapter/Convert/ToGsa/_ToGsa.cs b/GSA_Adapter/Convert/ToGsa/_ToGsa.cs index a8980c6..aa8cf45 100644 --- a/GSA_Adapter/Convert/ToGsa/_ToGsa.cs +++ b/GSA_Adapter/Convert/ToGsa/_ToGsa.cs @@ -75,6 +75,8 @@ public static string ToGsaString(this Type type) return "EL"; else if (type == typeof(RigidLink)) return "EL"; + else if (type == typeof(RigidConstraint)) + return "RIGID"; else if (type == typeof(LinkConstraint)) return "PROP_LINK"; else if (type == typeof(Spacer))