Use query parameters to enter the side lengths, and then use construct triangle to generate the result.
// What's up? The shape maker is one of the projects that most scratchers will do after joining. The project consists of a few parameters, such as pen size, color, color transition, turning angle and side length. This project, however, is much more advanced due to there being no angular input. // The triangle The triangle is a shape with a few properties: 1. It has 3 sides and 3 internal angles. 2. Its internal angles add up to 180° 3. The sum of any two side lengths must always be longer than the remaining side length. 4. There is only one unique triangle with the same side lengths. // Angle calculation based on side length Well, see inside for yourself. It's a horrible mess to begin with. // Too complicated Just enjoy the nice results. //Coming soon Triangle constructor (angles)