From 7ab0928fed7431bba23dfd32a972f92ab4df213d Mon Sep 17 00:00:00 2001 From: Johannes Sixt Date: Mon, 1 Jun 2020 19:19:25 +0200 Subject: [PATCH] Synthesize another universal joint. The LDraw 2019-03 library update brought a new universal joint piece. Adjust titles of the other joint that were updated at the same time. --- common/lc_synth.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/common/lc_synth.cpp b/common/lc_synth.cpp index 3df1ff3a..8ba4c4d0 100644 --- a/common/lc_synth.cpp +++ b/common/lc_synth.cpp @@ -361,9 +361,10 @@ void lcSynthInit() } UniversalJoints[] = { - { "61903.dat", 60.00f, 0.0f, "62520.dat", "62519.dat" }, // Technic Universal Joint 3L - { "3712C01.dat", 60.00f, 30.0f, "3712.dat", "3326.dat" }, // Technic Universal Joint - { "575C01.dat", 60.00f, 30.0f, "575.dat", "3326a.dat" } // Technic Universal Joint Type 1 + { "61903.dat", 60.00f, 0.0f, "62520.dat", "62519.dat" }, // Technic Universal Joint 3L (Complete) + { "3712C01.dat", 60.00f, 30.0f, "3712.dat", "3326.dat" }, // Technic Universal Joint 4L with Bush Ends with Centre Type 2 (Complete) + { "3712C03.dat", 60.00f, 30.0f, "3712.dat", "3326a.dat" }, // Technic Universal Joint 4L with Bush Ends with Centre Type 1 (Complete) + { "575C01.dat", 60.00f, 30.0f, "575.dat", "3326a.dat" } // Technic Universal Joint Type 1 (Complete) }; for (const auto& JointInfo: UniversalJoints)